Skip to content

Commit d774df8

Browse files
committed
Add EOL notification.
1 parent a4eb51f commit d774df8

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Python Apple Support
22
====================
33

4+
**Python 3.4 has reached End Of Life. This repository branch is no longer maintained.**
5+
46
**This repository branch builds a packaged version of Python 3.4.8**.
57
Other Python versions are available by cloning other branches of the main
68
repository.

patch/Python/Setup.embedded

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,40 @@
44

55
_bisect _bisectmodule.c
66
_bz2 _bz2module.c -I$(srcdir)/../bzip2/include -L$(srcdir)/../Support/BZip2 -lbz2
7+
_codecs _codecsmodule.c
78
_codecs_cn cjkcodecs/_codecs_cn.c
89
_codecs_hk cjkcodecs/_codecs_hk.c
910
_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
1011
_codecs_jp cjkcodecs/_codecs_jp.c
1112
_codecs_kr cjkcodecs/_codecs_kr.c
1213
_codecs_tw cjkcodecs/_codecs_tw.c
14+
_collections _collectionsmodule.c
1315
_crypt _cryptmodule.c
1416
_csv _csv.c
1517
_datetime _datetimemodule.c
1618
_elementtree _elementtree.c \
1719
-I$(srcdir)/Modules/expat
1820
-DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI
21+
_functools -DPy_BUILD_CORE _functoolsmodule.c
22+
_hashlib _hashopenssl.c -I$(srcdir)/../openssl/include -L$(srcdir)/../Support/OpenSSL -lOpenSSL -DUSE_SSL
1923
_heapq _heapqmodule.c
24+
_io -DPy_BUILD_CORE -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
2025
_json _json.c
26+
_locale _localemodule.c
2127
_lsprof _lsprof.o rotatingtree.c
2228
_lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../Support/XZ -llzma
2329
_md5 md5module.c
2430
_multibytecodec cjkcodecs/multibytecodec.c
2531
_multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c
2632
_opcode _opcode.c
33+
_operator _operator.c
2734
_pickle _pickle.c
2835
_posixsubprocess _posixsubprocess.c
2936
_random _randommodule.c
3037
_sha1 sha1module.c
3138
_sha256 sha256module.c
3239
_sha512 sha512module.c
40+
_signal -DPy_BUILD_CORE signalmodule.c
3341
_socket socketmodule.c
3442
_sqlite3 -I$(srcdir)/Modules/_sqlite -DMODULE_NAME='\"sqlite3\"' -DSQLITE_OMIT_LOAD_EXTENSION -lsqlite3 \
3543
_sqlite/cache.c \
@@ -41,18 +49,29 @@ _sqlite3 -I$(srcdir)/Modules/_sqlite -DMODULE_NAME='\"sqlite3\"' -DSQLITE_OMIT_L
4149
_sqlite/row.c \
4250
_sqlite/statement.c \
4351
_sqlite/util.c
52+
_sre _sre.c
4453
_ssl _ssl.c -I$(srcdir)/../openssl/include -L$(srcdir)/../Support/OpenSSL -lOpenSSL -DUSE_SSL
45-
_hashlib _hashopenssl.c -I$(srcdir)/../openssl/include -L$(srcdir)/../Support/OpenSSL -lOpenSSL -DUSE_SSL
54+
_stat _stat.c
4655
_struct _struct.c
56+
_symtable symtablemodule.c
57+
_thread -DPy_BUILD_CORE _threadmodule.c
58+
_tracemalloc _tracemalloc.c hashtable.c
59+
_weakref _weakref.c
60+
atexit atexitmodule.c
4761
array arraymodule.c
4862
audioop audioop.c
4963
binascii binascii.c
5064
cmath cmathmodule.c _math.c
65+
errno errnomodule.c
66+
faulthandler faulthandler.c
5167
fcntl fcntlmodule.c
5268
grp grpmodule.c
69+
itertools itertoolsmodule.c
5370
math mathmodule.c
5471
mmap mmapmodule.c
5572
parser parsermodule.c
73+
posix -DPy_BUILD_CORE posixmodule.c
74+
pwd pwdmodule.c
5675
pyexpat expat/xmlparse.c \
5776
expat/xmlrole.c \
5877
expat/xmltok.c \
@@ -65,6 +84,7 @@ syslog syslogmodule.c
6584
termios termios.c
6685
time timemodule.c
6786
unicodedata unicodedata.c
87+
zipimport -DPy_BUILD_CORE zipimport.c
6888
zlib zlibmodule.c -I$(prefix)/include -lz
6989

7090
#####################################################################

0 commit comments

Comments
 (0)