summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Move 'U' entirely out of file mode tablencoghlan-clarify-U-mode-deprecationNick Coghlan2019-01-281-3/+5
* Fix table markupNick Coghlan2019-01-271-2/+3
* Further adjustments to deprecation noticeNick Coghlan2019-01-271-1/+5
* Too much Markdown lately :)Nick Coghlan2019-01-221-1/+1
* Clarify U-mode deprecation in open()Nick Coghlan2019-01-221-1/+1
* bpo-35758: Fix building on ARM + MSVC (gh-11531)Minmin Gong2019-01-213-2/+5
* bpo-35782: Fix error message in randrange (GH-11620)Kumar Akshay2019-01-211-1/+1
* bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)Pablo Galindo2019-01-211-1/+3
* bpo-35772: Fix test_tarfile on ppc64 (GH-11606)Victor Stinner2019-01-213-2/+15
* bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)Pablo Galindo2019-01-213-4/+32
* Add information about DeprecationWarning for invalid escaped characters in th...Pablo Galindo2019-01-201-1/+4
* bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)Marc Schlaich2019-01-202-0/+2
* bpo-35770: Fix off-by-1 error. (#11618)Terry Jan Reedy2019-01-181-1/+1
* bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)Anthony Sottile2019-01-183-1/+13
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-183-1/+9
* bpo-21257: document http.client.parse_headers (GH-11443)Ashwin Ramaswami2019-01-182-0/+20
* bpo-35045: Accept TLSv1 default in min max test (GH-11510)Christian Heimes2019-01-182-2/+7
* bpo-35283: Update the docstring of threading.Thread.join method (GH-11596)Dong-hee Na2019-01-181-1/+1
* bpo-35769: Change IDLE's name for new files from 'Untitled' to 'untitled' (GH...Terry Jan Reedy2019-01-183-2/+5
* bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)Serhiy Storchaka2019-01-185-11/+95
* bpo-35730: IDLE - test squeezer reload() by checking load_font() (GH-11585)Tal Einat2019-01-171-7/+3
* bpo-23156: Remove obsolete tix install directions (GH-11595)Terry Jan Reedy2019-01-171-11/+0
* bpo-34161: Update idlelib/NEWS.txt to 2019 Jan 17 (GH-11597)Terry Jan Reedy2019-01-171-0/+15
* bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282)Timo Furrer2019-01-173-4/+22
* bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)David H2019-01-172-1/+7
* bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454)Dong-hee Na2019-01-175-4/+17
* Fixes typo in asyncio.queue doc (GH-11581)Slam2019-01-171-1/+1
* bpo-35486: Note Py3.6 import system API requirement change (GH-11540)Nick Coghlan2019-01-172-1/+13
* Revert "bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)" (GH-11582)Victor Stinner2019-01-163-13/+6
* bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)Victor Stinner2019-01-163-6/+13
* bpo-35674: Add os.posix_spawnp() (GH-11554)Joannah Nanjekye2019-01-169-112/+322
* bpo-35537: subprocess uses os.posix_spawn in some cases (GH-11452)Victor Stinner2019-01-164-0/+99
* bpo-35746: Fix segfault in ssl's cert parser (GH-11569)Christian Heimes2019-01-154-0/+51
* bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)Victor Stinner2019-01-152-1/+9
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Serhiy Storchaka2019-01-152-10/+16
* bpo-11555: Enhance IocpProactor.close() log again (GH-11563)Victor Stinner2019-01-151-3/+2
* bpo-34323: Enhance IocpProactor.close() log (GH-11555)Victor Stinner2019-01-152-3/+18
* bpo-35738: Update the example for timer.Timer.repeat(). (GH-11559)Henry Chen2019-01-151-1/+1
* bpo-29707: Document that os.path.ismount() is not able to reliable detect bin...Serhiy Storchaka2019-01-151-3/+4
* bpo-35619: Improve support of custom data descriptors in help() and pydoc. (G...Serhiy Storchaka2019-01-153-46/+182
* bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(...Serhiy Storchaka2019-01-141-0/+6
* bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692)MichaelSaah2019-01-143-5/+24
* bpo-35730: Disable IDLE test_reload assertion. (GH-11543)Terry Jan Reedy2019-01-131-1/+3
* bpo-35196: Optimize Squeezer's write() interception (GH-10454)Tal Einat2019-01-136-263/+247
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-1313-51/+91
* bpo-34512: Document platform-specific strftime() behavior for non-ASCII forma...Alexey Izbyshev2019-01-121-0/+6
* bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro...Serhiy Storchaka2019-01-123-6/+21
* bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...Serhiy Storchaka2019-01-123-48/+94
* bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...Serhiy Storchaka2019-01-123-17/+51
* bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)Serhiy Storchaka2019-01-124-0/+26