summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-31026: Fix test_dbm if dbm.ndbm is build with Berkeley DB. (GH-6632)Miss Islington (bot)2018-04-292-2/+29
* [3.6] bpo-33383: Fix crash in get() of the dbm.ndbm database object. (GH-6630...Serhiy Storchaka2018-04-294-2/+31
* bpo-991266: Fix quoting of Comment attribute of SimpleCookie (GH-6555)Miss Islington (bot)2018-04-231-0/+10
* [3.6] Spelling fixes to docs, docstrings, and comments (GH-6374) (#6558)Terry Jan Reedy2018-04-211-1/+1
* bpo-33189: pygettext.py now accepts only literal strings (GH-6364)Miss Islington (bot)2018-04-191-6/+65
* bpo-33308: Fix a crash in the parser module when convert an ST object. (GH-6519)Miss Islington (bot)2018-04-191-7/+22
* Fix spelling typo (GH-6443) (#6508)Miss Islington (bot)2018-04-171-1/+1
* bpo-33295: Skip test using missing external site (GH-6504) (GH-6511)Miss Islington (bot)2018-04-171-0/+1
* bpo-31920: Fixed handling directories as arguments in the ``pygettext`` scrip...Miss Islington (bot)2018-04-091-1/+25
* Add a prepend() recipe to teach a chain() idiom (GH-6415) (GH-6422)Miss Islington (bot)2018-04-081-0/+8
* bpo-33224: PEP 479 fix for difflib.mdiff() (GH-6381) (GH-6391)Miss Islington (bot)2018-04-051-0/+8
* bpo-33203: Ensure random.choice always raises IndexError on empty sequence (G...Miss Islington (bot)2018-04-051-1/+4
* bpo-29922: Add more tests for error messages in 'async with'. (GH-6370)Miss Islington (bot)2018-04-041-1/+41
* bpo-29922: Improve error messages in 'async with' (GH-6352)Miss Islington (bot)2018-04-041-4/+9
* bpo-33209: End framing at the end of C implementation of pickle.Pickler.dump(...Miss Islington (bot)2018-04-031-17/+18
* bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-62...Miss Islington (bot)2018-03-281-1/+1
* bpo-27212: Modify islice recipe to consume initial values preceding start (GH...Miss Islington (bot)2018-03-271-0/+67
* bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)Miss Islington (bot)2018-03-261-0/+50
* [3.6] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6214)Christian Heimes2018-03-241-0/+1
* [3.6] bpo-33041: Fixed jumping if the function contains an "async for" loop. ...Serhiy Storchaka2018-03-233-1/+87
* bpo-27683: Fix a regression for host() of ipaddress network objects (GH-6016)Miss Islington (bot)2018-03-211-3/+23
* bpo-18802: Add more details to ipaddress documentation (GH-6083)Miss Islington (bot)2018-03-211-0/+3
* bpo-19417: Add test_bdb.py (GH-5217)xdegaye2018-03-192-2/+1152
* [3.6] bpo-33041: Add tests for jumps in/out of 'async with' blocks. (GH-6110)...Serhiy Storchaka2018-03-181-1/+133
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Miss Islington (bot)2018-03-171-1/+15
* [3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (G...Miss Islington (bot)2018-03-131-11/+57
* [3.6] bpo-31804: Fix multiprocessing.Process with broken standard streams (GH...Antoine Pitrou2018-03-111-2/+29
* [3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-602...Miss Islington (bot)2018-03-111-0/+28
* [3.6] bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044)...Andrew Svetlov2018-03-101-19/+36
* bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037)Nathan Henrie2018-03-091-0/+1
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Miss Islington (bot)2018-03-071-1/+2
* bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6...Miss Islington (bot)2018-03-061-0/+10
* [3.6] bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) (GH-5990)Steve Dower2018-03-051-0/+35
* [3.6] bpo-32981: Fix catastrophic backtracking vulns (GH-5955)Benjamin Peterson2018-03-042-2/+32
* [3.6] bpo-32964: Reuse a testing implementation of the path protocol in tests...Serhiy Storchaka2018-03-0310-95/+69
* [3.6] bpo-32922: dbm.open() now encodes filename with the filesystem encoding...Serhiy Storchaka2018-02-273-1/+87
* bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)Miss Islington (bot)2018-02-271-0/+8
* bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH...Miss Islington (bot)2018-02-261-0/+88
* Revert "[3.6] bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (...Barry Warsaw2018-02-262-20/+2
* [3.6] bpo-32394: Remove some TCP options on older version Windows. (GH-5585)animalize2018-02-261-0/+19
* bpo-18533: Avoid RecursionError from repr() of recursive dictview (GH-4823)Miss Islington (bot)2018-02-262-0/+29
* bpo-31518: Change TLS protocol for Debian (#3660)Christian Heimes2018-02-245-12/+12
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Miss Islington (bot)2018-02-241-0/+4
* [3.6] bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066) (GH-5826)Anselm Kruis2018-02-232-1/+34
* bpo-32457: Improves handling of denormalized executable path when launching P...Steve Dower2018-02-221-0/+12
* bpo-31848: Fix broken error handling in Aifc_read.initfp() when the SSND chun...Miss Islington (bot)2018-02-201-0/+8
* bpo-32409: Ensures activate.bat can handle Unicode contents (GH-5766)Miss Islington (bot)2018-02-201-0/+18
* bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)Miss Islington (bot)2018-02-191-1/+1
* bpo-32682: Improve libz version parsing in test_zilb (GH-5347)Miss Islington (bot)2018-02-191-4/+9
* [3.6] Improves the ability to build in CI (GH-5730)Steve Dower2018-02-182-7/+13