summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2...Miss Islington (bot)2018-12-075-82/+328
* bpo-34864: warn if "Prefer tabs when opening documents" set to "Always" (GH-1...Miss Islington (bot)2018-12-065-9/+69
* Add missing period in distutils.dep_util.newer_group doc (GH-11003)Miss Islington (bot)2018-12-061-1/+1
* bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934). (GH-11001)Serhiy Storchaka2018-12-063-5/+11
* bpo-35363: test_eintr uses print(flush=True) (GH-10990)Miss Islington (bot)2018-12-061-2/+3
* bpo-35424: test_multiprocessing: join 3 pools (GH-10986)Miss Islington (bot)2018-12-061-0/+3
* bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii charac...Miss Islington (bot)2018-12-062-4/+23
* [3.6] bpo-34162: Update idlelib NEWS to 2018-12-05 (GH-10964) (GH-10979)Terry Jan Reedy2018-12-061-2/+40
* bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=1252. (GH...Miss Islington (bot)2018-12-051-1/+5
* [3.6] Revert "bpo-34172: multiprocessing.Pool leaks resources after being del...Victor Stinner2018-12-063-57/+27
* [3.6] Fix typo in xml.dom.minidom documentation (GH-10956) (GH-10962)Mariatta2018-12-051-1/+1
* bpo-35363: test_eintr runs eintr_tester.py in verbose mode (GH-10965)Miss Islington (bot)2018-12-051-1/+15
* [3.6] Fix typos in concurrent.Futures documentation (GH-10920) (GH-10958)Mariatta2018-12-051-1/+7
* bpo-34604: Use %R because of invisible characters or trailing whitespaces. (G...Miss Islington (bot)2018-12-063-2/+5
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Miss Islington (bot)2018-12-063-36/+84
* bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)Miss Islington (bot)2018-12-052-0/+8
* [3.6] Correct a couple of unbalanced parenthesis. (GH-10779). (GH-10945)Andre Delfino2018-12-0511-15/+15
* bpo-34738: Add directory entries in ZIP files created by distutils. (GH-9419)...Miss Islington (bot)2018-12-055-10/+27
* bpo-34185: Fix test module collision in test_bdb when ran as script. (GH-8537...Miss Islington (bot)2018-12-051-8/+8
* Move __missing__ after __delitem__ in Data model. (GH-10923)Miss Islington (bot)2018-12-051-8/+8
* bpo-34987: Fix a possible null pointer dereference in _pickle.c's save_reduce...Miss Islington (bot)2018-12-051-1/+4
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919) (GH-...Victor Stinner2018-12-054-30/+100
* [3.6] bpo-35380: Enable TCP_NODELAY for proactor event loop (GH-10867). (GH-1...Andrew Svetlov2018-12-056-40/+44
* bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10...Miss Islington (bot)2018-12-041-0/+1
* bpo-35363, test_eintr: skip test_open() on macOS (GH-10896) (GH-10912)Victor Stinner2018-12-051-2/+4
* bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) (GH-10909)Miss Islington (bot)2018-12-052-0/+13
* bpo-35357: Add _mock_ prefix to name/parent/from_kall attributes of _Call/_Ma...Miss Islington (bot)2018-12-044-16/+34
* [3.7] bpo-35373: Fix PyInit_timezone() error handling (GH-10864)Miss Islington (bot)2018-12-031-5/+24
* bpo-35226: Fix equality for nested unittest.mock.call objects. (GH-10555)Miss Islington (bot)2018-12-036-23/+124
* bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)Miss Islington (bot)2018-12-033-5/+24
* bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_re...Miss Islington (bot)2018-12-031-1/+1
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Miss Islington (bot)2018-12-013-22/+40
* [3.6] Fix signature of xml.dom.minidom.Document.toprettyxml(). (GH-10814). (G...E Kawashima2018-12-011-1/+1
* bpo-31177: Skip deleted attributes while calling reset_mock (GH-9302)Miss Islington (bot)2018-12-013-1/+13
* get_gmtoff() now returns time_t (GH-10838) (GH-10840)Victor Stinner2018-12-011-9/+29
* bpo-35352: test_asyncio uses the certificate set from the test directory (GH-...Victor Stinner2018-11-307-203/+21
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008) (GH-10822)Victor Stinner2018-11-302-4/+39
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791)Miss Islington (bot)2018-11-301-25/+39
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Miss Islington (bot)2018-11-291-0/+1
* [3.7] bpo-34279: Synchronize regrtest with master (GH-10800)Miss Islington (bot)2018-11-297-22/+122
* bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751) (GH...Victor Stinner2018-11-291-2/+2
* [3.6] bpo-31625: Stop using ranlib (GH-10417)stratakis2018-11-294-107/+4
* bpo-27903: Fix ResourceWarning in platform.dist() (GH-10792)Miss Islington (bot)2018-11-292-17/+21
* bpo-16086: Fix PyType_GetFlags() documentation (GH-10758) (GH-10790)Miss Islington (bot)2018-11-291-1/+4
* bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782)Miss Islington (bot)2018-11-281-2/+0
* pythoninfo: log more environment variable (GH-10719) (GH-10770)Victor Stinner2018-11-281-4/+45
* [3.6] Doc: Delete "how do I emulate os.kill" section in Windows FAQ (GH-10487...Julien Palard2018-11-281-21/+0
* bpo-33676: Fix dangling thread in _test_multiprocessing (GH-10755)Miss Islington (bot)2018-11-271-0/+2
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Miss Islington (bot)2018-11-274-13/+13
* [3.6] bpo-33029: Fix signatures of getter and setter functions. (GH-10746) (G...Serhiy Storchaka2018-11-2723-119/+125