Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v2.7.18
/
Modules
tag
41ca0e7833977c2475722ccc3dd5c16865d96dc1
tagger
Benjamin Peterson <benjamin@python.org>
Sun Apr 19 21:13:50 2020
object
8d21aa21f2cbc6d50aab3f420bb23be1d081dac4
Python 2.7.18
f32bcf8
[2.7] bpo-38730: Fix -Wstringop-truncation warnings. (GH-17075)
by Benjamin Peterson
· 6 years ago
089e5f5
bpo-37731: Squish another _POSIX_C_SOURCE redefinition problem in expat. (GH-17077)
by Benjamin Peterson
· 6 years ago
30114c7
bpo-37731: Reorder includes in xmltok.c to avoid redefinition of _POSIX_C_SOURCE (GH-16733)
by Miss Islington (bot)
· 6 years ago
e73b93a
[2.7] closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16408)
by Benjamin Peterson
· 6 years ago
be257bc
[2.7] bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155). (GH-16215)
by Serhiy Storchaka
· 6 years ago
5d55d52
bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140)
by Miss Islington (bot)
· 6 years ago
68d8c12
[2.7] bpo-38168: Fix a possbile refleak in setint() of mmapmodule.c (GH-16136) (GH-16176)
by Xiang Zhang
· 6 years ago
0d63669
[2.7] bpo-35264: Modules/_ssl.c: fix build with OpenSSL 1.1.0 (GH-10570)
by Alexandru Ardelean
· 6 years ago
289c5ea
bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (GH-15822)
by Zackery Spytz
· 6 years ago
2fb6921
[2.7] bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625) (GH-15740)
by Serhiy Storchaka
· 6 years ago
c364221
bpo-34521: Fix FD transfer in multiprocessing on FreeBSD (GH-15422)
by Victor Stinner
· 6 years ago
03b0128
Put pyexpatns.h include back. bpo-37437 (GH-14539)
by Miss Islington (bot)
· 6 years ago
4397c68
closes bpo-37437: Update vendorized expat to 2.2.7. (GH-14436)
by Miss Islington (bot)
· 6 years ago
598c756
[2.7] Fix name of '\0'. (GH-14225)
by Benjamin Peterson
· 6 years ago
48f190f
[2.7] bpo-37188: Fix a divide-by-zero in arrays of size-0 objects (#13906)
by Eric Wieser
· 6 years ago
2bfc2dc
[2.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) (GH-13898)
by Zackery Spytz
· 6 years ago
fd83a82
bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH-12660) (GH-12678)
by Zackery Spytz
· 6 years ago
a110817
bpo-36150: Fix possible assertion failures due to _ctypes.c's PyCData_reduce(). (GH-12106) (GH-12643)
by Zackery Spytz
· 6 years ago
c0dce6a
bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551) (GH-12554)
by Miss Islington (bot)
· 6 years ago
0516f818
[2.7] bpo-36421: Fix ref counting bugs in _ctypes.c's PyCArrayType_new(). (GH-12534)
by Zackery Spytz
· 6 years ago
f70b884
bpo-36337: socket.send()/sendall() use Py_ssize_t (GH-12397)
by Stéphane Wirtel
· 6 years ago
2dd6e07
[2.7] bpo-36289: Fix a possible reference leak in the io module (GH-12329)
by stratakis
· 6 years ago
fb3336a
[2.7] bpo-36291: Fix a possible reference leak in the json module (GH-12330)
by stratakis
· 6 years ago
2832ad5
[2.7] bpo-36212: Fix two possible reference leaks in the hotshot module (GH-12327)
by stratakis
· 6 years ago
098b139
bpo-36147: Fix a memory leak in ctypes s_get() (GH-12102)
by stratakis
· 6 years ago
b2aefd7
[2.7] bpo-36186: Fix linuxaudiodev.linux_audio_device() error handling (GH-12163)
by stratakis
· 6 years ago
d9bf7f4
[2.7] bpo-36149 Fix potential use of uninitialized memory in cPickle (#12105)
by T. Wouters
· 6 years ago
84b5ac9
[2.7] bpo-36179: Fix ref leaks in _hashopenssl (GH-12158) (GH-12166)
by Christian Heimes
· 6 years ago
710dcfd
[2.7] bpo-13096: Fix memory leak in ctypes POINTER handling of large values (GH-12100)
by stratakis
· 6 years ago
b545ba0
[2.7] bpo-36106: resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027) (GH-12050)
by Dima Pasechnik
· 6 years ago
2149a9a
[2.7] bpo-32947: Fixes for TLS 1.3 and OpenSSL 1.1.1 (GH-8761) (GH-11876)
by stratakis
· 7 years ago
b8eaec6
[2.7] bpo-28043: improved default settings for SSLContext (GH-10608)
by stratakis
· 7 years ago
06b1542
bpo-35746: Fix segfault in ssl's cert parser (GH-11569)
by Miss Islington (bot)
· 7 years ago
1462234
[2.7] bpo-8765: Deprecate writing unicode to binary streams in Py3k mode. (GH-11127)
by Serhiy Storchaka
· 7 years ago
f347c6e
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) (GH-11249)
by Zackery Spytz
· 7 years ago
3752bc9
bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229)
by Miss Islington (bot)
· 7 years ago
89b5ea2
[2.7] bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) (GH-11234)
by Serhiy Storchaka
· 7 years ago
838645d
bpo-10320: Use PY_FORMAT_LONG_LONG in ctypes' PyCArg_repr(). (GH-11230)
by Zackery Spytz
· 7 years ago
53e2248
bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853)
by Miss Islington (bot)
· 7 years ago
2632df4
[2.7] bpo-31374: Include pyconfig.h earlier in expat (GH-11078)
by Victor Stinner
· 7 years ago
7bbf7b0
bpo-31374: Include pyconfig.h earlier in expat (GH-11064)
by Miss Islington (bot)
· 7 years ago
fff8fab
[2.7] bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113). (GH-10946) (GH-10955)
by Serhiy Storchaka
· 7 years ago
93d7918
[2.7] bpo-16865: Support arrays >=2GB in ctypes. (GH-3006). (GH-7441)
by Serhiy Storchaka
· 7 years ago
eab421b
[2.7] bpo-25862: Fix several bugs in the _io module. (GH-8026) (GH-8033)
by Serhiy Storchaka
· 7 years ago
f3fe21a
bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)
by Miss Islington (bot)
· 7 years ago
40fdf47
[2.7] bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) (GH-10617)
by Serhiy Storchaka
· 7 years ago
2907d93
Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)
by Miss Islington (bot)
· 7 years ago
0d16526
[2.7] bpo-35194: Fix a wrong constant in cp932 codec. (GH-10420) (GH-10433)
by Alexey Izbyshev
· 7 years ago
a614cc9
[2.7] closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now match `setup.py` (GH-10293)
by Benjamin Peterson
· 7 years ago
05acd44
bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. (GH-10217)
by Miss Islington (bot)
· 7 years ago
64ffee7
[2.7] Fix a possible "double decref" in termios.tcgetattr(). (GH-10194) (GH-10218)
by Zackery Spytz
· 7 years ago
d61f586
[2.7] bpo-35068: Fix possible crashes in pyexpat.c. (GH-10099)
by Zackery Spytz
· 7 years ago
aaea280
[2.7] bpo-34794: Fix a leak in Tkinter. (GH-10025) (GH-10181)
by Serhiy Storchaka
· 7 years ago
e131c7c
[2.7] Fix error handling bugs in _elementtree.c. (GH-10060) (GH-10080)
by Zackery Spytz
· 7 years ago
5744a33
Fix several reference counting bugs in pyexpat.c. (GH-9955)
by Miss Islington (bot)
· 7 years ago
b63a16f
[2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258) (GH-9425)
by Vladimir Matveev
· 7 years ago
18b20ba
[2.7] bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) (GH-9394)
by Christian Heimes
· 7 years ago
5f883fc
[2.7] bpo-34710: fix SSL module build (GH-9347) (GH-9353)
by Christian Heimes
· 7 years ago
669429f
bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)
by Miss Islington (bot)
· 7 years ago
b36567b
[2.7] bpo-28994: Remove mistakenly backported atexitmodule.c (GH-9214)
by Zackery Spytz
· 7 years ago
b663205
[2.7] Delete old expat comment. (GH-9205)
by Benjamin Peterson
· 7 years ago
253279c
[2.7] closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque with a bad __new__(). (GH-9179)
by Benjamin Peterson
· 7 years ago
7a501de
bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)
by Miss Islington (bot)
· 7 years ago
ed62e64
[2.7] Fix misleading mentions of tp_size in comments (GH-9138)
by Benjamin Peterson
· 7 years ago
032e85f
bpo-34491: Add missing Py_DECREF() in _bsddb's DB_join() (GH-8909)
by Zackery Spytz
· 7 years ago
ae1f012
bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Realloc(). (GH-8785)
by Sergey Fedoseev
· 7 years ago
396afbf
Fix docstring of Profiler class (GH-8651)
by Miss Islington (bot)
· 7 years ago
dd4d8b4
Fix compilation warnings on Windows (GH-8627)
by Victor Stinner
· 7 years ago
6a6b248
bpo-29565: Fix compilation for C89 (GH-8626)
by Victor Stinner
· 7 years ago
3243f8c
bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD64 (GH-168) (GH-8625)
by Victor Stinner
· 7 years ago
48c8bf2
[2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)
by Serhiy Storchaka
· 7 years ago
2bea771
bpo-34229: Check start and stop of slice object to be long when they are not int in PySlice_GetIndices (GH-8480)
by Xtreak
· 7 years ago
041a4ee
bpo-25943: Check for integer overflow in bsddb's DB_join(). (GH-8392)
by Zackery Spytz
· 7 years ago
3252205
bpo-25943: Fix potential heap corruption in bsddb's _db_associateCallback() (GH-8337)
by Zackery Spytz
· 7 years ago
fc153d1
[2.7] bpo-34068: iobase_close could call PyObject_SetAttrString with an exception set (GH-8282). (GH-8312) (GH-8314)
by Serhiy Storchaka
· 7 years ago
ef19fd2
[2.7] bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192). (GH-8255)
by Serhiy Storchaka
· 7 years ago
dc39a59
[2.7] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8217)
by Benjamin Peterson
· 7 years ago
695ecd9
[2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214)
by Benjamin Peterson
· 7 years ago
bfee590
Don't export pending_threadfunc from _testcapi. (GH-8075)
by Miss Islington (bot)
· 7 years ago
0464de0
[2.7] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918). (GH-8013)
by Zackery Spytz
· 7 years ago
468f97b
[2.7] closes bpo-33956: update vendored expat to 2.2.5 (GH-7925)
by Benjamin Peterson
· 7 years ago
70c3d58
Fix compiler warnings on Windows (GH-7729)
by Victor Stinner
· 7 years ago
1889c4c
bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958) (GH-7704)
by Xiang Zhang
· 7 years ago
e5b79c5
bpo-19418: audioop.c: Fix warnings on -0x80000000 (GH-7453)
by Victor Stinner
· 7 years ago
b17d409
bpo-33781: audioop: enhance rounding double as int (GH-7447) (GH-7452)
by Victor Stinner
· 7 years ago
3014d6e
[2.7] bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381) (GH-7432)
by Serhiy Storchaka
· 7 years ago
ded666f
[2.7] bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) (GH-7347)
by Antoine Pitrou
· 7 years ago
db10742
[2.7] bpo-33677: Fix the signature of tp_clear handler for deque. (GH-7196). (GH-7277)
by Serhiy Storchaka
· 7 years ago
9044cd6
[2.7] bpo-33622: Fix issues with handling errors in the GC. (GH-7078) (#7096)
by Serhiy Storchaka
· 7 years ago
3ccc313
bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)
by Miss Islington (bot)
· 7 years ago
d988c0b
[2.7] bpo-33308: Fix a crash in the parser module when convert an ST object. (GH-6519) (GH-6532)
by Serhiy Storchaka
· 7 years ago
924035a
[2.7] Fix error message in sqlite connection thread check. (GH-6028). (GH-6325)
by Serhiy Storchaka
· 7 years ago
c498cd8
bpo-31544: Fix a reference leak to 'self' after the previous target error handling fixes. (GH-6318)
by scoder
· 7 years ago
edd5418
[2.7] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6215)
by Christian Heimes
· 7 years ago
0694b6a
bpo-31544: Avoid calling "PyObject_GetAttrString()" (and potentially executing user code) with a live exception set. (GH-3992)
by scoder
· 7 years ago
7ee0936
Fix typos in mmap() error messages (GH-6173)
by Miss Islington (bot)
· 7 years ago
aa40f92
[2.7] bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801). (#5947)
by Alexey Izbyshev
· 7 years ago
df1732a
[2.7] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5882)
by Christian Heimes
· 7 years ago
439956a
Fix ssl module, Python 2.7 doesn't have Py_MAX (#5878)
by Christian Heimes
· 7 years ago
3d87f4c
[2.7] bpo-30622: Improve NPN support detection (GH-5859) (#5863)
by Christian Heimes
· 7 years ago
Next »