File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,16 @@ incorporated into an XCode project.
15
15
It exposed *almost * all the modules in the Python standard library except for:
16
16
* dbm.gnu
17
17
* tkinter
18
- * nis
19
- * ossaudiodev
20
- * spwd
18
+ * readline
19
+ * nis (Deprecated by PEP594)
20
+ * ossaudiodev (Deprecated by PEP594)
21
+ * spwd (Deprecated by PEP594)
21
22
22
23
The following standard library modules are available on macOS, but not the other
23
24
Apple platforms:
24
25
* curses
25
26
* posixshmem
26
27
* posixsubprocess
27
- * readline
28
28
29
29
The binaries support x86_64 and arm64 for macOS; arm64 for iOS and appleTV
30
30
devices; and arm64_32 for watchOS. It also supports device simulators on both
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ _codecs_kr cjkcodecs/_codecs_kr.c
16
16
_codecs_tw cjkcodecs/_codecs_tw.c
17
17
_collections _collectionsmodule.c
18
18
_contextvars _contextvarsmodule.c
19
- _crypt _cryptmodule.c
20
19
_csv _csv.c
21
20
_dbm _dbmmodule.c -DHAVE_NDBM_H
22
21
_datetime _datetimemodule.c
@@ -68,7 +67,6 @@ _uuid _uuidmodule.c
68
67
_zoneinfo _zoneinfo.c -DPy_BUILD_CORE_MODULE
69
68
array arraymodule.c
70
69
atexit atexitmodule.c
71
- audioop audioop.c
72
70
binascii binascii.c
73
71
cmath cmathmodule.c _math.c
74
72
errno errnomodule.c
@@ -111,7 +109,14 @@ zlib zlibmodule.c -I$(prefix)/include -lz
111
109
#_curses_panel _curses_panel.c -lpanel -lncurses
112
110
#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
113
111
#_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I... -L...
112
+ #readline readline.c -lreadline -ltermcap
113
+
114
+ #####################################################################
115
+ # Modules that exist, but are deprecated by PEP594 and will be
116
+ # removed in Python 3.13
117
+ #####################################################################
118
+ _crypt _cryptmodule.c
119
+ audioop audioop.c
114
120
#nis nismodule.c -lnsl
115
121
#ossaudiodev
116
- #readline readline.c -lreadline -ltermcap
117
122
#spwd spwdmodule.c
You can’t perform that action at this time.
0 commit comments