summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-35186: Remove "built with" comment in setup.py upload (GH-10414)Paul Ganssle2018-12-171-8/+2
* bpo-35491, multiprocessing: replace "RUN" with RUN (GH-11178)Victor Stinner2018-12-161-1/+1
* bpo-35471: Remove the macpath module (GH-11129)Victor Stinner2018-12-144-379/+4
* bpo-35346: Cleanup platform.architecture() (GH-11130)Victor Stinner2018-12-141-6/+2
* bpo-34279: regrtest consider that skipped tests are ran (GH-11132)Victor Stinner2018-12-142-1/+15
* bpo-35491: Enhance multiprocessing.BaseProcess.__repr__() (GH-11138)Victor Stinner2018-12-141-11/+16
* Add multiprocessing.Pool.__repr__() (GH-11137)Victor Stinner2018-12-141-5/+11
* bpo-35477: multiprocessing.Pool.__enter__() fails if called twice (GH-11134)Victor Stinner2018-12-132-8/+25
* bpo-35412: Add testcase to test_future4 (GH-11131)Victor Stinner2018-12-121-1/+6
* bpo-35346: Drop Mac OS 9 support from platform (GH-10959)Victor Stinner2018-12-121-15/+2
* bpo-33106: change dbm key deletion error for readonly file from KeyError to d...Xiang Zhang2018-12-124-4/+26
* Add test for double patching instance methods (#11085)Anthony Sottile2018-12-121-0/+14
* bpo-17185: Add __signature__ to mock that can be used by inspect for signatur...Xtreak2018-12-122-2/+34
* bpo-35394: Add empty slots to abstract asyncio protocols (#10889)Andrew Svetlov2018-12-113-24/+67
* bpo-35426: Eliminate race condition in test_interprocess_signal (GH-11087)Pablo Galindo2018-12-111-22/+18
* bpo-35412: Skip test_multiprocessing_fork and test_multiprocessing_forkserver...Pablo Galindo2018-12-112-0/+7
* bpo-35458: Fix test_shutil.test_disk_usage() (GH-11111)Victor Stinner2018-12-111-1/+5
* bpo-34977: Add Windows App Store package (GH-11027)Steve Dower2018-12-111-1/+1
* bpo-34977: Use venv redirector instead of original python.exe on Windows (GH-...Steve Dower2018-12-102-30/+20
* bpo-32788: Better error handling in sqlite3. (GH-3723)Serhiy Storchaka2018-12-101-3/+25
* bpo-35050: AF_ALG length check off-by-one error (GH-10058)Christian Heimes2018-12-101-0/+18
* bpo-35052: Fix handler on xml.dom.minidom.cloneNode() (GH-11061)Victor Stinner2018-12-102-4/+55
* bpo-33725: skip test_multiprocessing_fork on macOS (GH-11043)Ned Deily2018-12-091-0/+3
* bpo-35330: Don't call the wrapped object if `side_effect` is set (GH10973)Mario Corchero2018-12-082-11/+132
* bpo-33747: Avoid mutating the global sys.modules dict in unittest.mock tests ...Anirudha Bose2018-12-071-11/+16
* Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)Victor Stinner2018-12-073-21/+31
* bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2...Serhiy Storchaka2018-12-072-4/+150
* bpo-35346, platform: replace os.popen() with subprocess (GH-10786)Victor Stinner2018-12-072-48/+28
* bpo-34864: warn if "Prefer tabs when opening documents" set to "Always" (#10464)Tal Einat2018-12-074-9/+67
* bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-073-31/+21
* bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)Serhiy Storchaka2018-12-063-4/+9
* Remove unused function in `testmock/support.py` (GH-10975)Mario Corchero2018-12-061-7/+0
* bpo-35363: test_eintr uses print(flush=True) (GH-10990)Victor Stinner2018-12-061-2/+3
* bpo-35424: test_multiprocessing: join 3 pools (GH-10986)Victor Stinner2018-12-061-0/+3
* bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii charac...Serhiy Storchaka2018-12-061-0/+1
* Revert "bpo-34172: multiprocessing.Pool leaks resources after being deleted (...Victor Stinner2018-12-062-57/+24
* bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=1252. (GH...native-api2018-12-061-1/+5
* bpo-34162: Update idlelib NEWS to 2018-12-05. (GH-10964)Terry Jan Reedy2018-12-061-0/+32
* bpo-35363: test_eintr runs eintr_tester.py in verbose mode (GH-10965)Victor Stinner2018-12-051-1/+15
* bpo-35389: test.pythoninfo logs platform.libc_ver (GH-10951)Victor Stinner2018-12-051-0/+4
* bpo-35344: platform.platform() uses mac_ver() on macOS (GH-10780)Victor Stinner2018-12-052-0/+41
* bpo-34738: Add directory entries in ZIP files created by distutils. (GH-9419)Serhiy Storchaka2018-12-054-10/+25
* bpo-34185: Fix test module collision in test_bdb when ran as script. (GH-8537)Alex H2018-12-051-8/+8
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Sergey Fedoseev2018-12-051-19/+64
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919)Victor Stinner2018-12-053-30/+94
* bpo-35389: platform.libc_ver() uses os.confstr() (GH-10891)Victor Stinner2018-12-052-7/+49
* bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907)Victor Stinner2018-12-052-0/+13
* Remove unnecessary and over-restrictive type check (GH-10905)Raymond Hettinger2018-12-041-2/+0
* bpo-35346, platform: import subprocess in _syscmd_file() (GH-10892)Victor Stinner2018-12-041-5/+7
* bpo-35363, test_eintr: skip test_open() on macOS (GH-10896)Victor Stinner2018-12-041-2/+4