Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.7.2
/
Modules
tag
e15c3ed43c574400443edc785b5b44b812df0407
tagger
Ned Deily <nad@python.org>
Sun Dec 23 21:39:21 2018
object
9a3ffc0492d1310ead9ce8f5ee678c26b20a338d
Python 3.7.2
3cae16d
bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107)
by Serhiy Storchaka
· 7 years ago
62674f3
bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)
by Miss Islington (bot)
· 7 years ago
ef1fc0d
bpo-31374: expat doesn't include <pyconfig.h> on Windows (GH-11079)
by Miss Islington (bot)
· 7 years ago
1467a3a
bpo-31374: Include pyconfig.h earlier in expat (GH-11064)
by Miss Islington (bot)
· 7 years ago
1a7b62d
bpo-35050: AF_ALG length check off-by-one error (GH-10058) (GH-11069)
by Victor Stinner
· 7 years ago
8b7d8ac
bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)
by Miss Islington (bot)
· 7 years ago
0d5730e
[3.7] bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2. (GH-11017) (GH-11022)
by Serhiy Storchaka
· 7 years ago
602d307
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020)
by Zackery Spytz
· 7 years ago
f740818
bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii character. (GH-10863)
by Miss Islington (bot)
· 7 years ago
3451078
bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)
by Miss Islington (bot)
· 7 years ago
ac8b47c
bpo-34604: Use %R because of invisible characters or trailing whitespaces. (GH-9165). (GH-10947)
by Serhiy Storchaka
· 7 years ago
1de91a0
bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113). (GH-10946)
by Serhiy Storchaka
· 7 years ago
e2f376f
bpo-34987: Fix a possible null pointer dereference in _pickle.c's save_reduce(). (GH-9886)
by Miss Islington (bot)
· 7 years ago
5eb78c7
[3.7] bpo-35373: Fix PyInit_timezone() error handling (GH-10864)
by Victor Stinner
· 7 years ago
a9f435e
bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853)
by Miss Islington (bot)
· 7 years ago
265b419
bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)
by Miss Islington (bot)
· 7 years ago
38c06d9
get_gmtoff() now returns time_t (GH-10838) (GH-10839)
by Victor Stinner
· 7 years ago
df738d5
bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806) (GH-10813)
by Victor Stinner
· 7 years ago
e604b6c
bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)
by Miss Islington (bot)
· 7 years ago
ad8ac54
bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)
by Serhiy Storchaka
· 7 years ago
5ceb701
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
by Miss Islington (bot)
· 7 years ago
716a808
closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (GH-8712)
by Miss Islington (bot)
· 7 years ago
bc665b4
bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689)
by Miss Islington (bot)
· 7 years ago
56742f1
[3.7] bpo-35189: Retry fnctl calls on EINTR (GH-10413) (GH-10678)
by Victor Stinner
· 7 years ago
18f3327
bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657)
by Miss Islington (bot)
· 7 years ago
6eff6b8
bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-10619)
by Victor Stinner
· 7 years ago
d57ab8a
bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)
by Miss Islington (bot)
· 7 years ago
e851049
bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executable (GH-9861)
by Steve Dower
· 7 years ago
b5ea5e5
Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)
by Miss Islington (bot)
· 7 years ago
9ee1d42
bpo-35233: InitConfigTests tests more config vars (GH-10541) (GH-10546)
by Victor Stinner
· 7 years ago
88cbea4
bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10537)
by Victor Stinner
· 7 years ago
35c28d5
[3.7] bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) (GH-10529)
by Victor Stinner
· 7 years ago
d57a3e5
bpo-29564:_PyMem_DumpTraceback() suggests enabling tracemalloc (GH-10510) (GH-10517)
by Victor Stinner
· 7 years ago
f6602f9
bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)
by Miss Islington (bot)
· 7 years ago
5f4d05d
[3.7] bpo-35214: Initial clang MemorySanitizer support (GH-10479) (GH-10492)
by Gregory P. Smith
· 7 years ago
22234f1
bpo-35194: Fix a wrong constant in cp932 codec (GH-10420)
by Miss Islington (bot)
· 7 years ago
7beb8c5
bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284)
by Miss Islington (bot)
· 7 years ago
08026b1
[3.7]bpo-29341: Backport b942707 3.7 (#10298)
by BNMetrics
· 7 years ago
04c9666
closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now match `setup.py` (GH-10289)
by Miss Islington (bot)
· 7 years ago
71b6c1a
bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. (GH-10217)
by Miss Islington (bot)
· 7 years ago
f00703d
Fix a possible "double decref" in termios.tcgetattr(). (GH-10194)
by Miss Islington (bot)
· 7 years ago
1d7d165
bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174)
by Miss Islington (bot)
· 7 years ago
95cfb81
bpo-35059, libmpdec: Add missing EXTINLINE in mpdecimal.h (GH-10128)
by Miss Islington (bot)
· 7 years ago
f7cefb4
bpo-34794: Fix a leak in Tkinter. (GH-10025) (GH-10069)
by Miss Islington (bot)
· 7 years ago
c46f042
Fix error handling bugs in _elementtree.c. (GH-10060)
by Miss Islington (bot)
· 7 years ago
18450be
bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959)
by Miss Islington (bot)
· 7 years ago
002aef3
closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodule.c. (GH-9961)
by Miss Islington (bot)
· 7 years ago
8f53dcd
bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate() (GH-5784)
by Miss Islington (bot)
· 7 years ago
23efe77
bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) (GH-9971)
by Miss Islington (bot)
· 7 years ago
4ec9f64
bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9743)
by Miss Islington (bot)
· 7 years ago
ef7f29f
Elaborate datetime.timedelta docstring (GH-7458)
by Miss Islington (bot)
· 7 years ago
d6d35d0
Fix several reference counting bugs in pyexpat.c. (GH-9955)
by Miss Islington (bot)
· 7 years ago
5b9b935
bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924)
by Miss Islington (bot)
· 7 years ago
178d1c0
bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)
by Miss Islington (bot)
· 7 years ago
35ae99d
[3.7] bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939) (GH-9940)
by Miss Islington (bot)
· 7 years ago
b1c8003
bpo-34941: Fix searching Element subclasses. (GH-9766)
by Miss Islington (bot)
· 7 years ago
8b040e5
[3.7] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9751) (GH-9798)
by Serhiy Storchaka
· 7 years ago
a4910c2
[3.7] bpo-34906: Doc: Fix typos (2) (GH-9735)
by Stéphane Wirtel
· 7 years ago
d921220
[3.7] Fix a compiler warning added in bpo-34872. (GH-9722). (GH-9726)
by Serhiy Storchaka
· 7 years ago
b3c4a05
bpo-34906: Doc: Fix typos (GH-9712)
by Miss Islington (bot)
· 7 years ago
a67bd53d
[3.7] bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679) (GH-9691)
by Elvis Pranskevichus
· 7 years ago
758ad54
Fix incorrect error handling in _pickle.Unpickler.__init__() (GH-9630)
by Miss Islington (bot)
· 7 years ago
7e35081
bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)
by Miss Islington (bot)
· 7 years ago
24cb7de
[3.7] bpo-34762: Update PyContext* refs to PyObject* in asyncio and decimal (GH-9610)
by Yury Selivanov
· 7 years ago
ddc163d
bpo-34783: Fix Py_Main() (GH-9526)
by Victor Stinner
· 7 years ago
2756ef3
[3.7] bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) (GH-9505)
by Christian Heimes
· 7 years ago
c00f703
bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)
by Miss Islington (bot)
· 7 years ago
187f2dd
bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)
by Miss Islington (bot)
· 7 years ago
975f3cb
bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)
by Miss Islington (bot)
· 7 years ago
ef4306b
closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261)
by Miss Islington (bot)
· 7 years ago
c56bbae
bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426)
by Miss Islington (bot)
· 7 years ago
015cd0f
bpo-32215: Fix performance regression in sqlite3 (GH-8511)
by Miss Islington (bot)
· 7 years ago
95cc3ee
Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by default (GH-9379)" (GH-9416)
by Victor Stinner
· 7 years ago
470a435
bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)
by Miss Islington (bot)
· 7 years ago
144f1e2
[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by default (GH-9379)
by Victor Stinner
· 7 years ago
1229664
bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158)
by Miss Islington (bot)
· 7 years ago
e2c0aea
bpo-34710: fix SSL module build (GH-9347)
by Miss Islington (bot)
· 7 years ago
e3f6aa7
bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258)
by Miss Islington (bot)
· 7 years ago
b2ff9a9
bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255)
by Miss Islington (bot)
· 7 years ago
ec4d099
bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)
by Miss Islington (bot)
· 7 years ago
329ea4e
bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)
by Miss Islington (bot)
· 7 years ago
72c34cf
closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4178)
by Miss Islington (bot)
· 7 years ago
cadb66e
[3.7] closes bpo-25041: Document AF_PACKET socket address format. (GH-9207)
by Benjamin Peterson
· 7 years ago
01ce535
Delete old expat comment. (GH-9197)
by Miss Islington (bot)
· 7 years ago
536e45a
closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque with a bad __new__(). (GH-3788)
by Miss Islington (bot)
· 7 years ago
2bc4eea
bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)
by Miss Islington (bot)
· 7 years ago
9c4a63f
bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242) (GH-9148)
by Miss Islington (bot)
· 7 years ago
4d5d219
[3.7] Fix misleading mentions of tp_size in comments. (GH-9136)
by Benjamin Peterson
· 7 years ago
7a633ed
[3.7] bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (GH-9098) (GH-9104)
by William Grzybowski
· 7 years ago
5b17d7f
closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. (GH-9067)
by Miss Islington (bot)
· 7 years ago
e8ca880
bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (GH-9027) (GH-9064)
by Miss Islington (bot)
· 7 years ago
4c532da
closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH-9016)
by Miss Islington (bot)
· 7 years ago
98c49c6
bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981)
by Victor Stinner
· 7 years ago
65ef742
bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) (GH-8974)
by Victor Stinner
· 7 years ago
388bd4b
[3.7] bpo-34492: Modules/main.c: Fix copy_wstrlist() (GH-8910) (GH-8922)
by Alexey Izbyshev
· 7 years ago
d5f017b
bpo-13312: Avoid int underflow in time year. (GH-8912)
by Miss Islington (bot)
· 7 years ago
c7f5435
closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_results. (GH-8869)
by Miss Islington (bot)
· 7 years ago
89b1654
bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate code points (GH-8862)
by Miss Islington (bot)
· 7 years ago
80a0eba
bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) (GH-8870)
by Victor Stinner
· 7 years ago
3152bc3
bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851)
by Miss Islington (bot)
· 7 years ago
Next »