summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix docstring of Profiler class (GH-8651)INADA Naoki2018-08-032-4/+4
* Improve the grammar in `range` documentation. (GH-8628)Andrés Delfino2018-08-031-1/+1
* bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639)Terry Jan Reedy2018-08-032-0/+3
* Update list.remove(x) documentation (GH-8636)Lysandros Nikolaou2018-08-031-2/+2
* bpo-34317: Fix a dead url to Windows documentation (GH-8622)HiyashiChuka2018-08-031-1/+1
* bpo-30317: Fix multiprocessing test_timeout() (GH-8621)Victor Stinner2018-08-031-3/+4
* bpo-34170: Cleanup pymain_run_filename() (GH-8631)Victor Stinner2018-08-021-85/+71
* bpo-27910: Update documentation of traceback module (GH-6116)torsava2018-08-022-30/+35
* bpo-34097: Add support for zipping files older than 1980-01-01 (GH-8270)Marcel Plch2018-08-024-5/+48
* bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582)jdemeyer2018-08-021-21/+21
* 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-026-0/+10
* bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608)Victor Stinner2018-08-016-24/+7
* bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)Victor Stinner2018-08-0114-1288/+1314
* Define _Py_NO_RETURN for Microsoft C compiler (GH-8606)Victor Stinner2018-08-013-6/+8
* bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596)Victor Stinner2018-08-011-10/+10
* bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595)Victor Stinner2018-08-013-1/+16
* bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594)Victor Stinner2018-08-014-28/+33
* bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593)Victor Stinner2018-08-011-0/+3
* bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591)Victor Stinner2018-08-017-8/+37
* bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)costypetrisor2018-07-313-17/+60
* bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532)MartinAltmayer2018-07-313-5/+6
* bpo-33089: Add math.dist() for computing the Euclidean distance between two p...Raymond Hettinger2018-07-315-1/+236
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Serhiy Storchaka2018-07-315-32/+114
* bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346)Serhiy Storchaka2018-07-3112-232/+214
* Revert "closes bpo-27494: Fix 2to3 handling of trailing comma after a genera...Serhiy Storchaka2018-07-317-36/+12
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-316-73/+112
* bpo-27671: Update FAQ about why len is function (GH-8432)INADA Naoki2018-07-311-18/+19
* Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)Sergey Fedoseev2018-07-301-5/+2
* bpo-33833: Fix ProactorSocketTransport AssertionError (#7893)twisteroid ambassador2018-07-303-0/+19
* Use 'for example' instead of 'in other words' in compound statement doc (GH-8...Andrés Delfino2018-07-301-1/+1
* Fix typos & formatting in Using Python on Windows doc (GH-8559)Segev Finer2018-07-301-4/+4
* Add docstrings to public methods from context.c (GH-8531)Peter Lamut2018-07-303-17/+80
* bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (G...Elvis Pranskevichus2018-07-305-2/+35
* bpo-34182: Fix test_pydoc running as a script. (GH-8389)Bo Bayles2018-07-291-1/+2
* bpo-34035: Fix several AttributeError in zipfile seek() methods. (GH-8527)Mickaël Schoentgen2018-07-294-4/+9
* bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544)Franz Wöllert2018-07-293-22/+26
* bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475)Stéphane Wirtel2018-07-292-0/+5
* Updated MSI README to mention dependency on .NET 3.5. (GH-8375)Vinay Sajip2018-07-291-0/+8
* bpo-8145: Improve isolation_level documentation (GH-8499)Berker Peksag2018-07-291-14/+22
* bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510)Berker Peksag2018-07-282-0/+4
* bpo-42349: Switch to test.support.unlink per review by Serhiy Storchaka (GH-8...Tim Golden2018-07-281-4/+1
* bpo-33089: Multidimensional math.hypot() (GH-8474)Raymond Hettinger2018-07-285-81/+143
* bpo-24356: Specify which Python binary will be used with venv (GH-6589)Elena Oat2018-07-282-8/+8
* bpo-33476: Fix _header_value_parser when address group is missing final ';' (...Dong-hee Na2018-07-283-1/+28
* bpo-33666: Add what's new entry for os.errno removal (GH-#8497)INADA Naoki2018-07-281-0/+6
* bpo-33921: Clarify how to bind to all interfaces using socket (GH-7877)johnthagen2018-07-281-6/+7
* bpo-5978: Document that profiling needs cmd/function to return (GH-7938)Andrés Delfino2018-07-281-0/+5
* bpo-29710: Clarify documentation for Bitwise binary operation (GH-1691)Sanyam Khurana2018-07-281-7/+13
* bpo-30722: Fix NEWS entries (GH-8501)Berker Peksag2018-07-272-6/+0