summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-34171: Prevent creating Lib/trace.cover when run the trace module. (GH-8841)Serhiy Storchaka2018-08-252-10/+9
* bpo-13312: Avoid int underflow in time year. (GH-8912)Gregory P. Smith2018-08-251-6/+5
* bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8...Vladimir Matveev2018-08-243-3/+24
* bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...Paul Ganssle2018-08-231-1/+8
* bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786)Michael Osipov2018-08-231-0/+1
* Remove superseded line from argparse.HelpFormatter() (GH-8839)Grant Jenks2018-08-221-1/+0
* bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692)Berker Peksag2018-08-221-5/+14
* bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass...Alexey Izbyshev2018-08-201-0/+30
* bpo-34318: Convert deprecation warnings to errors in assertRaises() etc. (GH-...Serhiy Storchaka2018-08-192-19/+10
* bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...Zackery Spytz2018-08-192-0/+5
* bpo-34415: Updated logging.Formatter docstring. (GH-8811)Vinay Sajip2018-08-191-1/+2
* Improve error message when mock.assert_has_calls fails (GH-8205)davidair2018-08-171-1/+3
* bpo-34391: Fix ftplib test for TLS 1.3 (GH-8787)Christian Heimes2018-08-161-0/+5
* bpo-34384: Fix os.readlink() on Windows (GH-8740)Berker Peksag2018-08-151-0/+47
* bpo-34399: 2048 bits RSA keys and DH params (#8762)Christian Heimes2018-08-144-44/+46
* Make regular expressions in test_tasks.py raw strings. (GH-8759)Benjamin Peterson2018-08-141-2/+2
* Add more tests and assertions for math.hypot() and math.dist() (GH-8747)Raymond Hettinger2018-08-121-5/+12
* bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452)Vadim Pushtaev2018-08-122-1/+57
* bpo-26818: Add a test to make sure the bug is fixed (GH-8664)Berker Peksag2018-08-111-0/+22
* bpo-9372: Deprecate several __getitem__ methods (GH-8609)Berker Peksag2018-08-117-0/+63
* bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663)Berker Peksag2018-08-112-1/+3
* bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678)Tal Einat2018-08-101-6/+17
* closes bpo-34353: Add sockets to stat.filemode fallback python implementation...GPery2018-08-102-0/+10
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-086-15/+117
* Assume the raw environ is always declared. (GH-8707)Benjamin Peterson2018-08-081-6/+0
* bpo-18540: Fix EAI_NONAME in imaplib.IMAP4*() (GH-8634)Berker Peksag2018-08-072-1/+19
* bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8...Serhiy Storchaka2018-08-062-181/+182
* bpo-19891: Ignore error while writing history file (GH-8483)Anthony Sottile2018-08-061-1/+10
* bpo-33839: refactor IDLE's tooltips & calltips, add docstrings and tests (GH-...Tal Einat2018-08-056-144/+415
* bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655)Stefan Otte2018-08-031-2/+4
* bpo-34325: Skip zipfile test for large timestamps when filesystem don't suppo...Marcel Plch2018-08-031-1/+5
* Fix docstring of Profiler class (GH-8651)INADA Naoki2018-08-031-2/+2
* bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639)Terry Jan Reedy2018-08-031-0/+1
* bpo-30317: Fix multiprocessing test_timeout() (GH-8621)Victor Stinner2018-08-031-3/+4
* bpo-27910: Update documentation of traceback module (GH-6116)torsava2018-08-021-13/+16
* bpo-34097: Add support for zipping files older than 1980-01-01 (GH-8270)Marcel Plch2018-08-022-3/+25
* bpo-34120: fix text viewer to call grab_release() only when needed (GH-8616)Tal Einat2018-08-021-2/+4
* bpo-34120: fix IDLE freezing after closing dialogs (GH-8603)Tal Einat2018-08-025-0/+9
* bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595)Victor Stinner2018-08-011-0/+2
* bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594)Victor Stinner2018-08-011-5/+5
* bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591)Victor Stinner2018-08-011-0/+4
* bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)costypetrisor2018-07-311-0/+31
* bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532)MartinAltmayer2018-07-311-1/+4
* bpo-33089: Add math.dist() for computing the Euclidean distance between two p...Raymond Hettinger2018-07-311-0/+103
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Serhiy Storchaka2018-07-312-15/+88
* bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346)Serhiy Storchaka2018-07-312-15/+20
* Revert "closes bpo-27494: Fix 2to3 handling of trailing comma after a genera...Serhiy Storchaka2018-07-316-36/+10
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-312-36/+85
* bpo-33833: Fix ProactorSocketTransport AssertionError (#7893)twisteroid ambassador2018-07-302-0/+17
* bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (G...Elvis Pranskevichus2018-07-302-1/+19