https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
974941f fix whitespace on Lib/uuid.py 30 October 2018, 18:33:03 UTC
2faca23 Add newsblurb for bpo-35115 30 October 2018, 15:33:17 UTC
b77a89e add test for converting UUID via `hex()` 30 October 2018, 15:20:09 UTC
12d3138 add __index__ to UUID class 30 October 2018, 15:12:00 UTC
a80af77 bpo-35086: Fix tkinter example "A Simple Hello World Program". (GH-10160) The root widget was accessed as a global variable in the Application's method. 30 October 2018, 14:56:07 UTC
31368a4 bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239) Add pyatomic.h to the VS project (it wasn't referenced). 30 October 2018, 14:14:25 UTC
9204fb8 bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) * Remove _PyThreadState_Current * Replace GET_TSTATE() with PyThreadState_GET() * Replace GET_INTERP_STATE() with _PyInterpreterState_GET_UNSAFE() * Replace direct access to _PyThreadState_Current with PyThreadState_GET() * Replace _PyThreadState_Current with _PyRuntime.gilstate.tstate_current * Rename SET_TSTATE() to _PyThreadState_SET(), name more consistent with _PyThreadState_GET() * Update outdated comments 30 October 2018, 14:13:17 UTC
3c09dca bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) Convert _Py_Dealloc() macro into a static inline function. Moreover, it is now also defined as a static inline function if Py_TRACE_REFS is defined. 30 October 2018, 13:48:26 UTC
e1b2995 bpo-32030: Make _PySys_AddXOptionWithError() private (GH-10236) Make _PySys_AddXOptionWithError() and _PySys_AddWarnOptionWithError() functions private again. They are no longer needed to initialize Python: _PySys_EndInit() is now responsible to add these options instead. Moreover, PySys_AddWarnOptionUnicode() now clears the exception on failure if possible. 30 October 2018, 13:31:42 UTC
905f1ac bpo-34523: Fix config_init_fs_encoding() for ASCII (GH-10232) * bpo-34523, bpo-34403: Fix config_init_fs_encoding(): it now uses ASCII if _Py_GetForceASCII() is true. * Fix a regression of commit b2457efc78b74a1d6d1b77d11a939e886b8a4e2c. * Fix also a memory leak: get_locale_encoding() already allocates memory, no need to duplicate the string. 30 October 2018, 11:58:10 UTC
b232df9 bpo-31680: Add curses.ncurses_version. (GH-4217) Use curses.ncurses_version for conditionally skipping a test. 30 October 2018, 11:22:42 UTC
3e429dc bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398) 30 October 2018, 11:19:51 UTC
95b6acf bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731) It was overridden by the lineno of the first decorator. Now it is the lineno of 'def' or 'class'. 30 October 2018, 11:16:02 UTC
b83d917 Doc: fix asyncio loop.close() description (GH-10229) Needs backport to 3.7. In 3.6 the description is correct. 29 October 2018, 21:39:21 UTC
f6a47f3 bpo-35031: Fix test_start_tls_server_1 on FreeBSD buildbots (GH-10011) Some FreeBSD buildbots fail to run this test as the eof was not being received by the server if the size is not big enough. This behaviour only appears if the client is using TLS1.3. 29 October 2018, 20:47:44 UTC
ed271b2 bpo-34765: install-sh is executable (GH-10225) Fix 'install-sh' file permission: add execution bit ("chmod +x"), "-rw-rw-r--." becomes "-rwxrwxr-x.". 29 October 2018, 20:43:02 UTC
0227748 bpo-34945: Buffer output in test suite only when creating junit file (GH-10204) After commit d0f49d2f5085ca68e3dc8725f1fb1c9674bfb5ed, the output of the test suite is always buffered as the test output needs to be included in the JUnit file in same cases (as when a test fails). This has the consequence that printing or using debuggers (like pdb) in the test suite does not result in a good user experience anymore. This commit modifies the test suite runner so it only captures the test output when the JUnit file is requested to fix the regression so prints and debuggers are usable again. 29 October 2018, 20:09:41 UTC
541497e bpo-35059: Convert Py_XINCREF() to static inline function (GH-10224) Convert Py_XINCREF() and Py_XDECREF() macros into static inline functions. 29 October 2018, 19:52:41 UTC
0200928 Include memo in the documented signature of copy.deepcopy() * Include memo in the documented signature of copy.deepcopy() The memo argument is mentioned lower on the doc page under writing a `__deepcopy__` method, but is not included in the documented function signature. This makes it easy to miss, and can lead to incorrect/buggy implementations of `__deepcopy__` -- which is exatly what just happpend to me! 29 October 2018, 18:30:12 UTC
3b05ad7 bpo-34160: Preserve user specified order of Element attributes in html. (GH-10190) 29 October 2018, 17:31:04 UTC
c93c58b bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565) Modules imported last are now cleared first at interpreter shutdown. A newly imported module is moved to the end of sys.modules, behind modules on which it depends. 29 October 2018, 17:30:16 UTC
542497a bpo-35059: Remove Py_STATIC_INLINE() macro (GH-10216) "static inline" should be used directly. Forcing the compiler to inline is not recommended. 29 October 2018, 13:49:24 UTC
2aaf0c1 bpo-35059: Convert Py_INCREF() to static inline function (GH-10079) * Convert Py_INCREF() and Py_DECREF() macros into static inline functions. * Remove _Py_CHECK_REFCNT() macro: code moved into Py_DECREF(). 29 October 2018, 12:43:07 UTC
c0799ec bpo-27741: Better wording for datetime.strptime() (GH-9994) 29 October 2018, 11:49:52 UTC
53835e9 Fix a possible "double decref" in termios.tcgetattr(). (GH-10194) 29 October 2018, 04:55:20 UTC
ea9c8bd bpo-35097: Add IDLE doc subsection explaining editor windows. (#10206) Topics include opening, title and status bar, .py* extension, and running. 29 October 2018, 00:42:18 UTC
c61e229 bpo-33234: Add exact allocation optimization to lists in What's New (GH-10200) In commit 372d705 a new optimization to the list() type was introduced but it was not added to the optimization section in What's new for Python 3.8. 28 October 2018, 22:03:18 UTC
47d9424 bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures (GH-10090) unittest.mock now includes mock calls in exception messages if assert_not_called, assert_called_once, or assert_called_once_with fails. 28 October 2018, 20:37:10 UTC
1803263 Issue 35093: Document the IDLE document viewer in the IDLE doc. (#10195) Add a paragraph in "Help and preferences", "Help sources" subsection. 28 October 2018, 20:21:18 UTC
372d705 bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846) The list() constructor isn't taking full advantage of known input lengths or length hints. This commit makes the constructor pre-size and not over-allocate when the input size is known (the input collection implements __len__). One on the main advantages is that this provides 12% difference in memory savings due to the difference between overallocating and allocating exactly the input size. For efficiency purposes and to avoid a performance regression for small generators and collections, the size of the input object is calculated using __len__ and not __length_hint__, as the later is considerably slower. 28 October 2018, 20:16:26 UTC
569d12f Fix yet one error in checking Tcl version. (GH-10189) 28 October 2018, 18:58:04 UTC
e3685fd bpo-34160: Preserve user specified order of Element attributes (GH-10163) 28 October 2018, 18:18:22 UTC
18d57b4 Fix checking for bugfix Tcl version. (GH-10185) 28 October 2018, 17:48:36 UTC
3d4fabb bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174) * Fix potential division by zero in BZ2_Malloc() * Avoid division by zero in PyLzma_Malloc() * Avoid division by zero and integer overflow in PyZlib_Malloc() Reported by Svace static analyzer. 28 October 2018, 16:45:50 UTC
68d6dc0 bpo-1529353: Explain Shell text squeezing in the IDLE doc. (#10169) 28 October 2018, 16:44:44 UTC
c8a8d6b bpo-35089: Don't mention typing.io and typing.re (GH-10173) https://bugs.python.org/issue35089 28 October 2018, 16:03:29 UTC
163eca3 bpo-34672: fix a compiler warning in timemodule.c (GH-10176) 28 October 2018, 15:58:42 UTC
49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) Configuring python with ./configure --with-pydebug CFLAGS="-D COUNT_ALLOCS -O0" makes "make smelly" fail as some symbols were being exported without the "Py_" or "_Py" prefixes. 28 October 2018, 15:02:17 UTC
6015cc5 bpo-32892: Support subclasses of base types in isinstance checks for AST constants. (GH-9934) Some projects (e.g. Chameleon) create ast.Str containing an instance of the str subclass. 28 October 2018, 11:43:03 UTC
913876d bpo-35054: Add yet more index entries for symbols. (GH-10121) 28 October 2018, 11:41:26 UTC
95f68b1 Fix mistakes on function coroutines related definitions (GH-9871) Fix a bug I introduced in #9864 by which coroutines are treated as synonymous of function coroutines. Also, fix the same mistake (coroutines == function coroutines) already present in other parts of the reference. I'm very sorry for the hassle. 28 October 2018, 10:41:57 UTC
2b555fc bpo-35088: Update idlelib.help.copy_string docstring (#10164) We now use git and backporting instead of hg and forward merging. 28 October 2018, 05:29:00 UTC
db40cb5 bpo-35087: Update idlelib help files for the current doc build. (GH-10162) There is only one trivial change to idle.rst. Nearly all the changes to help.html are the elimination of chapter and section numbers on headers due to changes in the build system. help.py no longer requires header numbering. 28 October 2018, 05:21:36 UTC
aeb1be5 bpo-34751: improved hash function for tuples (GH-9471) 28 October 2018, 00:06:38 UTC
53125a5 bpo-35067: Remove _distutils_findvs and use vswhere.exe instead. (GH-10095) 27 October 2018, 20:48:33 UTC
d855f2f unittest documentation: Spell pytest without the dot (GH-9820) Referring to ``pytest`` as ``py.test`` is deprecated. 27 October 2018, 18:09:12 UTC
40bf6cf Fix typo in zipfile documentation. (GH-10151) 27 October 2018, 14:42:56 UTC
fec35c9 bpo-33710: Deprecate l*gettext() and related functions in the gettext module. (GH-10139) They return encoded bytes and are Python 2 artifacts. 27 October 2018, 05:00:41 UTC
d9bff4e bpo-35079: Revise difflib.SequenceManager.get_matching_blocks doc (GH-10144) Specify that blocks are non-overlapping. Change '!=' to '<'. 27 October 2018, 03:03:08 UTC
12e696b bpo-35042: Use the :pep: role where a PEP is specified (#10036) 26 October 2018, 22:58:26 UTC
9e14e49 bpo-35024: Remove redundant and possibly incorrect verbose message after writing '.pyc' (GH-9998) Since `SourceFileLoader.set_data()` catches exceptions raised by `_write_atomic()` and logs an informative message consequently, always logging successful outcome in 'SourceLoader.get_code()' seems redundant. https://bugs.python.org/issue35024 26 October 2018, 18:36:30 UTC
4e3a53b Fix a typo in asyncio-dev.rst. (GH-10133) "threadsafe" 26 October 2018, 17:14:04 UTC
50fe3f8 bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108) Use _PyObject_ASSERT() in: * _PyDict_CheckConsistency() * _PyType_CheckConsistency() * _PyUnicode_CheckConsistency() _PyObject_ASSERT() dumps the faulty object if the assertion fails to help debugging. 26 October 2018, 16:47:15 UTC
0862505 bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111) Replace assert() with _PyObject_ASSERT() in Objects/typeobject.c to dump the faulty object on assertion failure to ease debugging. 26 October 2018, 16:39:11 UTC
a4b2bc7 bpo-9263: Use _PyObject_ASSERT() in gcmodule.c (GH-10112) Replace assert() with _PyObject_ASSERT() in Modules/gcmodule.c to dump the faulty object on assertion failure to ease debugging. Fix also indentation of a large comment. Initial patch written by David Malcolm. Co-Authored-By: David Malcolm <dmalcolm@redhat.com> 26 October 2018, 16:00:13 UTC
2470204 bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110) Replace assert() with _PyObject_ASSERT() in Objects/object.c to dump the faulty object on assertion failure to ease debugging. 26 October 2018, 15:16:37 UTC
3b1cba3 bpo-35059, libmpdec: Add missing EXTINLINE in mpdecimal.h (GH-10128) Declare functions with EXTINLINE: * mpd_del() * mpd_uint_zero() * mpd_qresize() * mpd_qresize_zero() * mpd_minalloc() These functions are implemented with "inline" or "ALWAYS_INLINE", but declared without inline which cause linker error on Visual Studio in Debug mode when using /Ob1. 26 October 2018, 15:06:57 UTC
a6dc531 bpo-34789: make xml.sax.make_parser accept iterables of all types (GH-9576) 26 October 2018, 14:56:57 UTC
10cb376 bpo-35017, socketserver: don't accept request after shutdown (GH-9952) Prior to this revision, after the shutdown of a `BaseServer`, the server accepted a last single request if it was sent between the server socket polling and the polling timeout. This can be problematic for instance for a server restart for which you do not want to interrupt the service, by not closing the listening socket during the restart. One request failed because of this behavior. Note that only one request failed, following requests were not accepted, as expected. 26 October 2018, 13:46:17 UTC
25a525b Simplify the warning for http.server. (#10116) 26 October 2018, 13:43:37 UTC
a05bef4 bpo-35059, PCbuild: Expand inline funcs in Debug (GH-10094) Visual Studio solution: Set InlineFunctionExpansion to OnlyExplicitInline ("/Ob1" option) on all projects (in pyproject.props) in Debug mode on Win32 and x64 platforms to expand functions marked as inline. This change should make Python compiled in Debug mode a little bit faster on Windows. On Unix, GCC uses -Og optimization level for ./configure --with-pydebug. 26 October 2018, 13:10:29 UTC
b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) * Convert PyObject_INIT() and PyObject_INIT_VAR() macros to static inline functions. * Fix usage of these functions: cast to PyObject* or PyVarObject*. 26 October 2018, 12:35:00 UTC
7cd2543 bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfunction work with functools.partial (GH-9903) inspect.isfunction() processes both inspect.isfunction(func) and inspect.isfunction(partial(func, arg)) correctly but some other functions in the inspect module (iscoroutinefunction, isgeneratorfunction and isasyncgenfunction) lack this functionality. This commits adds a new check in the mentioned functions in the inspect module so they can work correctly with arbitrarily nested partial functions. 26 October 2018, 11:19:14 UTC
e483f02 bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037) 26 October 2018, 10:52:11 UTC
ddb961d bpo-35054: Add more index entries for symbols. (GH-10064) 26 October 2018, 06:00:49 UTC
3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) _Py_NegativeRefcount() now uses _PyObject_AssertFailed() to dump the object to help debugging. 26 October 2018, 00:12:34 UTC
c89a932 bpo-35053: Define _PyTraceMalloc_NewReference in object.h (GH-10107) _PyTraceMalloc_NewReference() is now called by _Py_NewReference(), so move its definition to object.h. Moreover, define it even if Py_LIMITED_API is defined, since _Py_NewReference() is also exposed even if Py_LIMITED_API is defined. 25 October 2018, 22:01:56 UTC
6c83d9f bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960) The MagicMock class supports many magic methods, but not __fspath__. To ease testing with modules such as os.path, this function is now supported by default. 25 October 2018, 21:48:58 UTC
1770d1c bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098) https://bugs.python.org/issue35038 25 October 2018, 21:13:45 UTC
9e95eb0 Fix grammar in using/unix build instruction docs (GH-10009) 25 October 2018, 15:32:30 UTC
626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) Changes: * Add _PyObject_AssertFailed() function. * Add _PyObject_ASSERT() and _PyObject_ASSERT_WITH_MSG() macros. * gc_decref(): replace assert() with _PyObject_ASSERT_WITH_MSG() to dump the faulty object if the assertion fails. _PyObject_AssertFailed() calls: * _PyMem_DumpTraceback(): try to log the traceback where the object memory has been allocated if tracemalloc is enabled. * _PyObject_Dump(): log repr(obj). * Py_FatalError(): log the current Python traceback. _PyObject_AssertFailed() uses _PyObject_IsFreed() heuristic to check if the object memory has been freed by a debug hook on Python memory allocators. Initial patch written by David Malcolm. Co-Authored-By: David Malcolm <dmalcolm@redhat.com> 25 October 2018, 15:31:10 UTC
18618e6 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) * Add Py_STATIC_INLINE() macro to declare a "static inline" function. If the compiler supports it, try to always inline the function even if no optimization level was specified. * Modify pydtrace.h to use Py_STATIC_INLINE() when WITH_DTRACE is not defined. * Add an unit test on Py_DECREF() to make sure that _Py_NegativeRefcount() reports the correct filename. 25 October 2018, 15:28:11 UTC
d03b775 bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082) Regression in b0bf51b32240369ccb736dc32ff82bb96f375402. 25 October 2018, 15:26:37 UTC
e25d5fc bpo-32321: Add pure Python fallback for functools.reduce (GH-8548) 25 October 2018, 14:02:10 UTC
6279c1c bpo-35053: Add Include/tracemalloc.h (GH-10091) * Modify object.h to ensure that pymem.h is included, to get _Py_tracemalloc_config variable. * Move _PyTraceMalloc_XXX() functions to tracemalloc.h, they need PyObject type. Break circular dependency between pymem.h and object.h. 25 October 2018, 13:54:13 UTC
9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) tracemalloc now tries to update the traceback when an object is reused from a "free list" (optimization for faster object creation, used by the builtin list type for example). Changes: * Add _PyTraceMalloc_NewReference() function which tries to update the Python traceback of a Python object. * _Py_NewReference() now calls _PyTraceMalloc_NewReference(). * Add an unit test. 25 October 2018, 11:31:16 UTC
d7c3e5f importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052) 25 October 2018, 11:04:28 UTC
5ad36f9 bpo-28015: Support LTO build with clang (GH-9908) .o generated by clang in LTO mode actually are LLVM bitcode files, which leads to a few errors during configure/build step: - add lto flags to the BASECFLAGS instead of CFLAGS, as CFLAGS are used to build autoconf test case, and some are not compatible with clang LTO (they assume binary in the .o, not bitcode) - force llvm-ar instead of ar, as ar is not aware of .o files generated by clang -flto 24 October 2018, 23:54:22 UTC
890423f configparser doc: Properly label ConfigParser attributes (GH-9930) 24 October 2018, 23:47:01 UTC
78401f7 importlib doc: Fix approximated import_module() code (GH-9945) The spec gets stored on modules with the __spec__ attribute, not spec. 24 October 2018, 23:32:26 UTC
e80e77a bpo-35027, distutils doc: Correct note on setup.py change in Python 3.7 (GH-10032) 24 October 2018, 22:50:25 UTC
9f270a2 turtledemo/penrose.py: remove unused clock() calls (GH-10033) Actually time calculations were remove in commit 891a1f8. 24 October 2018, 22:43:39 UTC
9f43fbb Use f-strings in asyncio-task code examples (GH-10035) Replace str.format with f-strings in the code examples of asyncio-task documentation. 24 October 2018, 22:37:12 UTC
057f407 bpo-32797: improve documentation of linecache.getline (GH-9540) 24 October 2018, 12:44:41 UTC
dfba1f6 bpo-33899: Mention tokenize behavior change in What's New (GH-10073) 24 October 2018, 07:20:05 UTC
c46db92 bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599) They no longer cache the wchar_t* representation of string objects. 23 October 2018, 19:58:24 UTC
df13df4 bpo-34794: Fix a leak in Tkinter. (GH-10025) Based on the investigation by Xiang Zhang. 23 October 2018, 19:40:54 UTC
9f3ed3e Fix error handling bugs in _elementtree.c. (GH-10060) References could leak, NULL could be dereferenced, and the Expat parser could be double freed when some errors raised. 23 October 2018, 19:28:06 UTC
82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) _PyObject_Dump() now uses an heuristic to check if the object memory has been freed: log "<freed object>" in that case. The heuristic rely on the debug hooks on Python memory allocators which fills the memory with DEADBYTE (0xDB) when memory is deallocated. Use PYTHONMALLOC=debug to always enable these debug hooks. 23 October 2018, 15:39:40 UTC
96f2c73 Add macos-team as a code owner (GH-10045) 23 October 2018, 13:37:02 UTC
fa53294 bpo-34980: P/Invoke QueryFullProcessImageName to get process names (GH-9901) 23 October 2018, 11:41:48 UTC
4f399be bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523) Fix the documentation of copy2, as it does not copy file ownership (user and group), only mode, mtime, atime and flags. The original text was confusing to developers as it suggested that this command is the same as 'cp -p', but according to cp(1), '-p' copies file ownership as well. Clarify which metadata is copied by shutil.copystat in its docstring. 23 October 2018, 10:09:50 UTC
b79b5c0 bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) https://bugs.python.org/issue35028 23 October 2018, 08:14:35 UTC
b7d6205 bpo-35046: do only one system call per line (logging.StreamHandler) (GH-10042) 23 October 2018, 06:48:38 UTC
3b0047d bpo-34482: test datetime classes' handling of non-UTF-8-encodable strings (GH-8878) 23 October 2018, 06:36:08 UTC
83a0765 bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH-9809) 23 October 2018, 06:11:20 UTC
3df8540 bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959) * Use _PyUnicode_Copy in sanitize_isoformat_str * Use repr in fromisoformat error message This reverses commit 67b74a98b2 per Serhiy Storchaka's suggestion: I suggested to use %R in the error message because including the raw string can be confusing in the case of empty string, or string containing trailing whitespaces, invisible or unprintable characters. We agree that it is better to change both the C and pure Python versions to use repr. * Retain non-sanitized dtstr for error printing This does not create an extra string, it just holds on to a reference to the original input string for purposes of creating the error message. * PEP 7 fixes to from_isoformat * Separate handling of Unicode and other errors In the initial implementation, errors other than encoding errors would both raise an error indicating an invalid format, which would not be true for errors like MemoryError. * Drop needs_decref from _sanitize_isoformat_str Instead _sanitize_isoformat_str returns a new reference, even to the original string. 22 October 2018, 16:32:52 UTC
5a95ba2 Fix issue 34551 - remove redundant store (#9009) The assignment of i/2 to nk is redundant because on this code path, nk is already the size of the dictionary, and i is already twice the size of the dictionary. I've replaced the store with an assertion that i/2 is nk. 22 October 2018, 15:52:46 UTC
2447773 bpo-29843: raise AttributeError if given negative _length_ (GH-10029) Raise ValueError OverflowError in case of a negative _length_ in a ctypes.Array subclass. Also raise TypeError instead of AttributeError for non-integer _length_. Co-authored-by: Oren Milman <orenmn@gmail.com> 22 October 2018, 15:33:10 UTC
121eb16 bpo-34081: Fix wrong example link that was linking to distutils (GH-8248) 21 October 2018, 14:54:52 UTC
back to top