aboutsummaryrefslogtreecommitdiff
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* [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-041-2/+48
* bpo-27240 Rewrite the email header folding algorithm. (GH-3488) (#4693)Miss Islington (bot)2017-12-033-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-12-011-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
* bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable GH-4409 (#...Miss Islington (bot)2017-11-151-0/+18
* bpo-32011: Revert "Issue GH-15480: Remove the deprecated and unused TYPE_INT6...Miss Islington (bot)2017-11-151-0/+23
* [3.6] bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Pri...Serhiy Storchaka2017-11-151-0/+33
* bpo-32032: Test both implementations of module-level pickle API. (GH-4401) (#...Miss Islington (bot)2017-11-153-18/+25
* [3.6] bpo-32015: Asyncio looping during simultaneously socket read/write anâ€...Andrew Svetlov2017-11-141-19/+59
* [3.6] bpo-28759: Skip some tests on PermissionError raised by Android (GH-435...xdegaye2017-11-127-35/+50
* [3.6] bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160). (#4...xdegaye2017-11-121-0/+62
* bpo-31999: Fix test_venv in case the zlib module is not available. (GH-4359) ...Miss Islington (bot)2017-11-101-1/+2
* bpo-31222: Make (datetime|date|time).replace return subclass type in Pure Pyt...Miss Islington (bot)2017-11-091-0/+14
* bpo-31620: have asyncio/queues not leak memory when you've exceptions during ...Miss Islington (bot)2017-11-071-0/+17
* [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314)...Antoine Pitrou2017-11-071-1/+1
* Fix the sizeof test for dicts with shared keys. (GH-4311) (#4312)Miss Islington (bot)2017-11-071-5/+10
* bpo-31924: Fix test_curses on NetBSD 8. (GH-4228) (#4259)Miss Islington (bot)2017-11-031-2/+4
* bpo-31933: fix blake2 multi-byte params on big endian platforms (GH-4250) (#4...Miss Islington (bot)2017-11-031-0/+36
* [3.6] bpo-31310: multiprocessing's semaphore tracker should be launched again...Antoine Pitrou2017-11-031-4/+39
* [3.6] bpo-31308: If multiprocessing's forkserver dies, launch it again when n...Antoine Pitrou2017-11-031-0/+48
* bpo-30806: Fix netrc.__repr__() format (GH-2491)Miss Islington (bot)2017-11-031-3/+6
* bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (G...Miss Islington (bot)2017-11-011-1/+8
* bpo-15037: Add a workaround for getkey() in curses for ncurses 5.7 and earlie...Miss Islington (bot)2017-11-011-0/+3
* bpo-31919: Fix building the curses module on OpenIndiana. (GH-4211) (#4215)Miss Islington (bot)2017-11-011-9/+13
* Fix test_socket.test_create_connection() (GH-4206) (#4208)Miss Islington (bot)2017-11-011-0/+4
* bpo-31897: Convert unexpected errors when read bogus binary plists into Inval...Miss Islington (bot)2017-10-311-4/+64