summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-32667: Fix tests when $PATH contains a file (GH-5322) (#5323)Miss Islington (bot)2018-01-252-9/+8
* [3.6] bpo-32502: Discard 64-bit (and other invalid) hardware addresses (GH-52...Bo Bayles2018-01-241-0/+26
* bpo-32618: Fix test_mutatingdecodehandler not testing test.mutating (GH-5269)...Miss Islington (bot)2018-01-231-3/+2
* [3.6] bpo-32028: Fix suggestions for indented print statements (GH-5249)Miss Islington (bot)2018-01-201-0/+9
* Use assertCountEqual instead of assertEqual. (GH-5223) (#5225)Miss Islington (bot)2018-01-171-3/+3
* pythoninfo: add time.time and datetime.datetime.now (GH-5214) (#5219)Miss Islington (bot)2018-01-171-1/+13
* Skip test_readline.test_nonascii() on C locale (GH-5203) (#5204)Miss Islington (bot)2018-01-161-0/+8
* Add itertools recipe for directly finding the n-th combination (GH-5161) (#5174)Miss Islington (bot)2018-01-131-0/+33
* bpo-31802: Fix importing native path module before importing os. (GH-4017) (#...Miss Islington (bot)2018-01-071-0/+4
* bpo-32482: Fix suspicious code in tests for syntax and grammar. (GH-5086) (#5...Miss Islington (bot)2018-01-042-8/+7
* bpo-32478: Add tests for 'break' and 'return' inside 'finally' clause. (GH-50...Miss Islington (bot)2018-01-021-0/+74
* bpo-32416: Add two new tests in test_sys_settrace. (GH-5072) (#5073)Miss Islington (bot)2018-01-011-8/+30
* [3.6] bpo-32416: Refactor tests for the f_lineno setter and add new tests. (G...Serhiy Storchaka2017-12-271-246/+405
* bpo-26133: Fix typos (GH-5010) (#5014)Miss Islington (bot)2017-12-261-0/+17
* bpo-20891: Skip test_embed.test_bpo20891() (#4967) (#4969)Victor Stinner2017-12-211-0/+3
* bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (GH-...Miss Islington (bot)2017-12-211-0/+9
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231) (#4898)Yury Selivanov2017-12-162-7/+27
* bpo-32294: Fix multiprocessing test_semaphore_tracker() (GH-4885) (#4887)Miss Islington (bot)2017-12-151-1/+1
* [3.6] bpo-30416: Protect the optimizer during constant folding. (#4865)Serhiy Storchaka2017-12-152-2/+10
* [3.6] bpo-27169: The __debug__ constant is now optimized out at compile time....Serhiy Storchaka2017-12-152-8/+9
* bpo-32329: Fix sys.flags.hash_randomization (#4875)Victor Stinner2017-12-151-2/+7
* pythoninfo: sync with master (#4844)Victor Stinner2017-12-141-21/+84
* [3.6] bpo-32297: Fix misspellings in Python source code comments (GH-4803) (#...Andrew Svetlov2017-12-1420-51/+52
* [3.6] Test atexit shutdown mechanism in a subprocess (GH-4828) (#4829)Antoine Pitrou2017-12-131-0/+16
* Fix improper use of re.escape() in tests. (GH-4814) (#4816)Miss Islington (bot)2017-12-121-1/+1
* Fix implementation dependent assertion in test_plistlib. (GH-4813) (#4815)Miss Islington (bot)2017-12-121-1/+2
* bpo-32255: Always quote a single empty field when write into a CSV file. (GH-...Miss Islington (bot)2017-12-121-1/+20
* bpo-22671: Clarify and test default read method implementations (GH-4568) (#4...Miss Islington (bot)2017-12-111-2/+51
* bpo-32208: update threading.Semaphore docs and add unit test (GH-4709) (#4750)Miss Islington (bot)2017-12-071-2/+4
* [3.6] bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (GH-47...Miss Islington (bot)2017-12-051-1/+2
* [bpo-28556] Minor fixes for typing module (GH-4710) (#4713)Miss Islington (bot)2017-12-051-2/+48
* bpo-27240 Rewrite the email header folding algorithm. (GH-3488) (#4693)Miss Islington (bot)2017-12-043-117/+216
* [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)Nick Coghlan2017-12-031-0/+45
* bpo-20891: Fix PyGILState_Ensure() (#4650) (#4655)Victor Stinner2017-11-301-9/+37
* bpo-32072: Fix issues with binary plists. (GH-4455) (#4654)Miss Islington (bot)2017-11-301-0/+55
* bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (GH-408...Miss Islington (bot)2017-11-301-2/+63
* Skip test_socket.test_sha256() on linux < 4.5 (GH-4643) (#4645)Miss Islington (bot)2017-11-301-0/+3
* bpo-32030: Fix test_sys.test_getallocatedblocks() (#4637)Victor Stinner2017-11-291-0/+4
* [3.6] bpo-32107 - Backport bitmask check fix (GH-4576) (#4591)Barry Warsaw2017-11-291-14/+12
* bpo-32139: test_strftime does not anymore modify the locale (GH-4569) (#4635)Miss Islington (bot)2017-11-291-2/+4
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (GH-4499) ...Miss Islington (bot)2017-11-291-2/+16
* asyncio: Fix BaseSelectorEventLoopTests (GH-4595) (#4599)Miss Islington (bot)2017-11-281-0/+2
* pythoninfo: add Py_DEBUG (#4198) (#4580)Victor Stinner2017-11-271-0/+8
* bpo-32128: Skip test_nntplib.test_article_head_body() (GH-4552) (#4553)Miss Islington (bot)2017-11-251-0/+1
* [3.6] bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)Berker Peksag2017-11-241-0/+7
* bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528)Miss Islington (bot)2017-11-241-0/+12
* bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (GH-4529) (#4533)Miss Islington (bot)2017-11-231-3/+6
* [3.6] bpo-31324: Optimize support._match_test() (#4523)Victor Stinner2017-11-234-15/+118
* bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459)Berker Peksag2017-11-231-1/+39
* bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929) (#4416)Victor Stinner2017-11-161-0/+16