https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
20c3417 fixed accidental whitespace change 03 December 2018, 21:14:29 UTC
bee9c76 New solution that more closely mirror the existing code. Does not include null byte in format string. 03 December 2018, 21:11:32 UTC
7778056 fixed format string parsing so that null byte not included after a trailing '%' 03 December 2018, 20:21:22 UTC
38fd1ef Added Misc/NEWS entry 29 November 2018, 17:41:45 UTC
888ab1e reformatted comments in test 29 November 2018, 16:27:14 UTC
11f91c2 fixed time.strftime call in test, moved test logic to own test method 27 November 2018, 16:02:30 UTC
a41f719 python whitespace issues in datetimetester.py 26 November 2018, 20:56:02 UTC
f5bc729 added test to make sure a trailing '%' in a format string passed to datetime.strftime doesn't fail, assuming time.strftime doesn't fail 26 November 2018, 20:45:29 UTC
81858bc changed formatting of do while loop 23 November 2018, 21:42:00 UTC
aac3a5f more formatting, removed "end do while" comment 23 November 2018, 21:40:21 UTC
4a6473b fix formatting/whitespace issues 23 November 2018, 21:37:17 UTC
41122fa alternative solution (do while) 22 November 2018, 16:00:26 UTC
75a7023 clean tentative solution 21 November 2018, 03:49:31 UTC
d178065 tentative fix, test_datetime passing 21 November 2018, 00:58:08 UTC
b1dede3 bpo-25750: Fix a compiler warning introduced in GH-9084. (GH-10234) 20 November 2018, 18:45:40 UTC
3ec0f49 bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) Fixes assertion failures in _datetimemodule.c introduced in the previous fix (see bpo-31752). Rather of trying to handle an int subclass as exact int, let it to use overridden special methods, but check the result of divmod(). 20 November 2018, 18:41:09 UTC
97f1efb bpo-35169: Improve error messages for forbidden assignments. (GH-10342) 20 November 2018, 17:27:16 UTC
6c48bf2 bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330) 20 November 2018, 17:26:09 UTC
6b73bb5 bpo-31146: Don't fallback switcher to english on not-yet pusblished languages. (GH-10558) 20 November 2018, 16:18:30 UTC
02e6bf7 bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) locale.localeconv() now sets temporarily the LC_CTYPE locale to the LC_MONETARY locale if the two locales are different and monetary strings are non-ASCII. This temporary change affects other threads. Changes: * locale.localeconv() can now set LC_CTYPE to LC_MONETARY to decode monetary fields. * Add LocaleInfo.grouping_buffer: copy localeconv() grouping string since it can be replaced anytime if a different thread calls localeconv(). * _Py_GetLocaleconvNumeric() now requires a "struct lconv *" structure, so locale.localeconv() now longer calls localeconv() twice. Moreover, the function now requires all arguments to be non-NULL. * Rename STATIC_LOCALE_INFO_INIT to LocaleInfo_STATIC_INIT. * Move _Py_GetLocaleconvNumeric() definition from fileutils.h to pycore_fileutils.h. pycore_fileutils.h now includes locale.h. * The _locale module is now built with Py_BUILD_CORE defined. 20 November 2018, 15:20:16 UTC
d5d3368 bpo-18859: Document --with-valgrind option in README.valgrind (#10591) 20 November 2018, 11:10:49 UTC
8b9c33e Upgrade pip to 18.1 and setuptools to 40.6.2 (#10598) 19 November 2018, 12:41:52 UTC
062a57b bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10585) coro->cr_origin wasn't initialized if compute_cr_origin() failed in PyCoro_New(), which would cause a crash during the coroutine's deallocation. https://bugs.python.org/issue35269 18 November 2018, 16:45:57 UTC
177a41a bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executable (GH-9860) 18 November 2018, 04:41:48 UTC
689d555 bpo-25438: document what codec PyMemberDef T_STRING decodes the char * as (GH-10580) Source of T_STRING: https://github.com/python/cpython/blob/e42b705188271da108de42b55d9344642170aa2b/Python/structmember.c#L51 Source of PyUnicode_FromString https://github.com/python/cpython/blob/master/Include/unicodeobject.h#L702 https://bugs.python.org/issue25438 17 November 2018, 19:16:51 UTC
38df97a Add --tempdir option for test run (GH-10322) 17 November 2018, 12:14:36 UTC
5a087d5 bpo-35202: Remove more unused imports in idlelib (GH-10573) 17 November 2018, 06:38:01 UTC
338d54f bpo-28401: prevent Py_DEBUG builds from trying to import limited ABI modules (GH-1766) [Issue 28401](https://bugs.python.org/issue28401): Don't attempt to import the stable API extensions, they are not supported in PyDEBUG builds (which don't implement that ABI). https://bugs.python.org/issue28401 16 November 2018, 23:52:52 UTC
ad65f15 Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576) This missed PyErr_NoMemory() could cause a SystemError when calling _symtable.symtable(). 16 November 2018, 15:58:55 UTC
90d0cfb bpo-35202: Remove unused imports in tests. (GH-10561) 16 November 2018, 15:32:58 UTC
4edeaea bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565) 16 November 2018, 13:28:51 UTC
a48e0eb Fix outdated info in datamodel about dicts (GH-9807) 16 November 2018, 11:58:19 UTC
c2ccac7 bpo-33816: Remove outdated metaclass example (GH-7566) 16 November 2018, 11:41:55 UTC
37cd982 bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532) * The _PySys_EndInit() function now copies the config->module_search_path list, so config is longer modified when sys.path is updated. * config->warnoptions list and config->xoptions dict are also copied * test_embed: InitConfigTests now also tests main_config['module_search_path'] * Fix _Py_InitializeMainInterpreter(): don't use config->warnoptions but sys.warnoptions to decide if the warnings module should be imported at startup. 16 November 2018, 10:55:35 UTC
b65413b bpo-35213: Where appropriate, use 'macOS' in idlelib. (#10478) 15 November 2018, 18:15:13 UTC
70f61b9 bpo-35202: Remove unused imports in Lib directory (GH-10450) 15 November 2018, 12:59:19 UTC
25221b3 Fix typo in asynchronous generator iterator documentation (GH-10542) Remove an unnecessary "that": ... will execute that the body ... -> ... will execute the body ... 15 November 2018, 05:51:56 UTC
bfb855b bpo-34784: Implement correct cleanup in PyStructSequence new implementation (GH-10536) PyTuple_Pack can fail and return NULL. If this happens, then PyType_FromSpecWithBases will incorrectly create a new type without bases. Also, it will crash on the Py_DECREF that follows. Also free members and type in error conditions. 15 November 2018, 02:03:57 UTC
4c596d5 Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543) "single" needs to be decrefed if PyList_Append() fails. 14 November 2018, 22:39:01 UTC
01de89c bpo-35233: InitConfigTests tests more config vars (GH-10541) test_embed.InitConfigTests tests more configuration variables. Changes: * InitConfigTests tests more core configuration variables: * base_exec_prefix * base_prefix * exec_prefix * home * legacy_windows_fs_encoding * legacy_windows_stdio * module_search_path_env * prefix * "_testembed init_from_config" tests more variables: * argv * warnoptions * xoptions * InitConfigTests: add check_global_config(), check_core_config() and check_main_config() subfunctions to cleanup the code. Move also constants at the class level (ex: COPY_MAIN_CONFIG). * Fix _PyCoreConfig_AsDict(): don't set stdio_encoding twice * Use more macros in _PyCoreConfig_AsDict() and _PyMainInterpreterConfig_AsDict() to reduce code duplication. * Other minor cleanups. 14 November 2018, 16:39:45 UTC
6431347 bpo-32613: Update window FAQ (GH-5552) 14 November 2018, 15:22:27 UTC
a757649 bpo-35230: dict: Remove some macros (GH-10513) Remove _Py_REF_DEBUG_COMMA, DK_DEBUG_INCREF, and DK_DEBUG_DECREF. Convert DK_INCREF and DK_DECREF to static inline functions. 14 November 2018, 09:39:27 UTC
8e0b05e Grammar corrections in abc.rst (GH-10525) 14 November 2018, 00:40:44 UTC
bf1355b Link to property built-in in abc.rst (GH-10526) 14 November 2018, 00:29:57 UTC
daeb3c4 Fix doc typo: Window -> Windows (GH-10508) 14 November 2018, 00:13:12 UTC
7ddd56f bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) * Fix _PyCoreConfig_SetGlobalConfig(): set also Py_FrozenFlag * Fix _PyCoreConfig_AsDict(): export also xoptions * Add _Py_GetGlobalVariablesAsDict() and _testcapi.get_global_config() * test.pythoninfo: dump also global configuration variables * _testembed now serializes global, core and main configurations using JSON to reuse _Py_GetGlobalVariablesAsDict(), _PyCoreConfig_AsDict() and _PyMainInterpreterConfig_AsDict(), rather than duplicating code. * test_embed.InitConfigTests now test much more configuration variables 13 November 2018, 23:24:28 UTC
746b2d3 bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) Discovered using clang's MemorySanitizer when it ran python3's test_fstring test_misformed_unicode_character_name. An msan build will fail by simply executing: ./python -c 'u"\N"' 13 November 2018, 21:16:54 UTC
00b137c bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10519) * Fix _PyMainInterpreterConfig_Copy(): copy 'install_signal_handlers' attribute * Add _PyMainInterpreterConfig_AsDict() * Add unit tests on the main interpreter configuration to test_embed.InitConfigTests * test.pythoninfo: log also main_config 13 November 2018, 18:59:26 UTC
f966e53 bpo-29564:_PyMem_DumpTraceback() suggests enabling tracemalloc (GH-10510) If tracemalloc is not tracing Python memory allocations, _PyMem_DumpTraceback() now suggests to enable tracemalloc to get the traceback where the memory block has been allocated. 13 November 2018, 14:14:58 UTC
474eedf bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (GH-9665) 13 November 2018, 12:09:31 UTC
1a6be91 bpo-35081: Make some _PyGC macros internal (GH-10507) * Move "GC" macros together: * PyObject_IS_GC() * _Py_AS_GC() * _PyObject_GC_IS_TRACKED() * _PyObject_GC_MAY_BE_TRACKED() * Mark other GC macros as internal (#ifdef Py_BUILD_CORE): * _PyGCHead_NEXT(g), _PyGCHead_SET_NEXT(g, p) * _PyGCHead_PREV(g), _PyGCHead_SET_PREV(g, p) * _PyGCHead_FINALIZED(g), _PyGCHead_SET_FINALIZED(g) * _PyGC_FINALIZED(o), _PyGC_SET_FINALIZED(o) * _PyObject_GC_TRACK(o), _PyObject_GC_UNTRACK(o) * _PyGC_PREV_MASK_FINALIZED * _PyGC_PREV_MASK_COLLECTING * _PyGC_PREV_SHIFT * _PyGC_PREV_MASK * Replace _PyGC_generation0 with _PyRuntime.gc.generation0 * _queuemodule.c: replace _PyObject_GC_UNTRACK() with with PyObject_GC_UnTrack() * Document that _PyObject_GC_TRACK() _PyObject_GC_UNTRACK() macros have been removed from the public C API. 13 November 2018, 11:52:18 UTC
0d12672 bpo-35081: Remove Py_BUILD_CORE from datetime.h (GH-10416) Datetime macros like PyDate_Check() have two implementations, one using the C API capsule and one using direct access to the datetime type symbols defined in _datetimemodule.c. Since the direct access versions of the macros are only used in _datetimemodule.c, they have been moved out of "datetime.h" and into _datetimemodule.c. The _PY_DATETIME_IMPL macro is currently necessary in order to avoid both duplicate definitions of these macros in _datetimemodule.c and unnecessary declarations of C API capsule-related macros and varibles in datetime.h. Co-Authored-By: Victor Stinner <vstinner@redhat.com> 13 November 2018, 08:02:25 UTC
3015fb8 bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) Rename our new MEMORY_SANITIZER define to _Py_MEMORY_SANITIZER. Project based C Preprocessor namespacing at its finest. :P 13 November 2018, 06:01:22 UTC
0dc1e45 Fix a couple documentation typos. (GH-10498) reproduciblity -> reproducibility PyPA are the group -> PyPA is the group 13 November 2018, 03:56:25 UTC
e6c77d8 Disable getc_unlocked() with MemorySanitizer. (GH-10499) clang's MemorySanitizer understand getc() but does not understand getc_unlocked(). Workaround: Don't use it on msan builds. 13 November 2018, 03:47:13 UTC
2c07c49 bpo-29564: warnings suggests to enable tracemalloc (GH-10486) The warnings module now suggests to enable tracemalloc if the source is specified, tracemalloc module is available, but tracemalloc is not tracing memory allocations. 13 November 2018, 01:41:00 UTC
1584a00 bpo-35214: Initial clang MemorySanitizer support (GH-10479) Adds configure flags for msan and ubsan builds to make it easier to enable. These also encode the detail that address sanitizer and memory sanitizer should disable pymalloc. Define MEMORY_SANITIZER when appropriate at build time and adds workarounds to existing code to mark things as initialized where the sanitizer is otherwise unable to determine that. This lets our build succeed under the memory sanitizer. not all tests pass without sanitizer failures yet but we're in pretty good shape after this. 12 November 2018, 20:07:14 UTC
a9655b7 Improve grammar in Glossary. (GH-10474) a asynchronous generator -> an asynchronous generator 12 November 2018, 17:42:38 UTC
7610f4f Correct grammar mistake in stdtypes.rst (GH-10481) 12 November 2018, 17:24:00 UTC
7438792 bpo-30064: Refactor sock_* asyncio API (#10419) 12 November 2018, 17:00:22 UTC
9404e77 Linkify PEP 8 in unix.rst (GH-10482) 12 November 2018, 16:31:57 UTC
621cebe bpo-35081: Rename internal headers (GH-10275) Rename Include/internal/ headers: * pycore_hash.h -> pycore_pyhash.h * pycore_lifecycle.h -> pycore_pylifecycle.h * pycore_mem.h -> pycore_pymem.h * pycore_state.h -> pycore_pystate.h Add missing headers to Makefile.pre.in and PCbuild: * pycore_condvar.h. * pycore_hamt.h * pycore_pyhash.h 12 November 2018, 15:53:38 UTC
19c46a4 bpo-33695 shutil.copytree() + os.scandir() cache (#7874) 12 November 2018, 14:18:15 UTC
cd44980 Minor grammar improvement to io documentation. (GH-10329) Independently of -> Independent of 12 November 2018, 04:06:18 UTC
7432f09 Update subprocess.Popen documentation wrt universal_newlines arg (GH-10337) * universal_newlines defaulting to False would suggest, that not specifying universal_newlines explicitly and setting text to True should cause an error, which is not the case. * The run function didn't have the universal_newlines parameter documented * The check_output function didn't have its text parameter documented 12 November 2018, 03:40:42 UTC
082875d bpo-33878: Doc: Fix missing case by simplifying. (GH-7762) The documentation was not covering multiple targets enclosed by parenthesis nor multiple targets enclosed by brackets, adding them all would be heavy, an else cover them all and is lighter to read. 11 November 2018, 23:59:39 UTC
5f2df88 bpo-35177: Add dependencies between header files (GH-10361) * ast.h now includes Python-ast.h and node.h * parsetok.h now includes node.h and grammar.h * symtable.h now includes Python-ast.h * Modify asdl_c.py to enhance Python-ast.h: * Add #ifndef/#define Py_PYTHON_AST_H to be able to include the header twice * Add "extern { ... }" for C++ * Undefine "Yield" macro conflicting with winbase.h * Remove "#undef Yield" from C files, it's now done in Python-ast.h * Remove now useless includes in C files 11 November 2018, 23:56:19 UTC
fd3a91c closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH-10442) This function may access memory which is mapped but is considered free by libc allocator. It behaves so by design, therefore we need to suppress sanitizer reports. GCC doesn't support MSan, so disable only TSan for it. 11 November 2018, 23:14:51 UTC
f9ec1b9 Neaten the code without any algorithmic change. (GH-10466) Remove unneeded assertion (we already know so is a PySetObject *). 11 November 2018, 22:35:47 UTC
b086c8a bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252) https://bugs.python.org/issue33699 11 November 2018, 19:33:51 UTC
76e8fd7 dict insertion order is guaranteed since 3.7 (GH-10431) 11 November 2018, 16:56:47 UTC
50ff02b bpo-34864: Document two IDLE on MacOS issues. (GH-10456) The System Preferences Dock "prefer tabs always" setting disables some IDLE features. Menus are a bit different than as described for Windows and Linux. 11 November 2018, 04:26:31 UTC
b9498e2 bpo-35202: Remove unused imports in Lib directory. (GH-10446) 10 November 2018, 07:22:02 UTC
43a74ab bpo-35202: Remove unused imports in idlelib (GH-10438) 10 November 2018, 06:45:31 UTC
2d1bc53 bpo-35202: Remove unused imports in Lib directory. (GH-10445) 10 November 2018, 05:45:28 UTC
9d43fa1 Doc: Simplify Copyright line in README (GH-10287) This also makes it consistent with other places like: - https://docs.python.org/dev/copyright.html - https://www.python.org/ footer - https://github.com/python/cpython/blob/e42b705188271da108de42b55d9344642170aa2b/Python/getcopyright.c#L7 10 November 2018, 03:45:40 UTC
009b2f0 Correct a typo in the Unittest documentation (GH-10397) Co-Authored-By: maggyero <gery.ogam@gmail.com> 09 November 2018, 19:34:54 UTC
d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) * _PyTuple_ITEMS() gives access to the tuple->ob_item field and cast the first argument to PyTupleObject*. This internal macro is only usable if Py_BUILD_CORE is defined. * Replace &PyTuple_GET_ITEM(ob, 0) with _PyTuple_ITEMS(ob). * Replace PyTuple_GET_ITEM(op, 1) with &_PyTuple_ITEMS(ob)[1]. 09 November 2018, 15:56:48 UTC
130893d bpo-35081: Internal headers require Py_BUILD_CORE (GH-10363) * All internal header files now require Py_BUILD_CORE or Py_BUILD_CORE_BUILTIN to be defined. * _json.c is now compiled with Py_BUILD_CORE_BUILTIN to access pycore_accu.h header. * Add an example to Modules/Setup to show how to build _json as a built-in module; it requires non trivial compiler options. 09 November 2018, 12:03:37 UTC
0a18e05 Hoist the float conversion out of the inner loop. (GH-10430) Currently, the *n* and *total* variables get converted to floats each time they are multiplied by random(). This minor tweak does the conversion just once and gets a small speedup (approx 3%). 09 November 2018, 10:39:50 UTC
cf5863f Optimize set.pop() to advance a pointer instead of indexing. (GH-10429) Gives approx 20% speed-up using clang depending on the number of elements in the set (the less dense the set, the more the speed-up). Uses the same entry++ logic used elsewhere in the setobject.c code. 09 November 2018, 10:31:56 UTC
b83942c Cleanup and improve the regex tokenizer example. (GH-10426) 1) Convert weird field name "typ" to the more standard "type". 2) For the NUMBER type, convert the value to an int() or float(). 3) Simplify ``group(kind)`` to the shorter and faster ``group()`` call. 4) Simplify logic go a single if-elif chain to make this easier to extend. 5) Reorder the tests to match the order the tokens are specified. This isn't necessary for correctness but does make the example easier to follow. 6) Move the "column" calculation before the if-elif chain so that users have the option of using this value in error messages. 09 November 2018, 09:19:33 UTC
216aaaa Fixing wording in comment. (GH-10425) Since the n==1 case just returns *max*, it cannot be larger than the magnitude of the vector entry. 09 November 2018, 09:06:02 UTC
7a69cf4 bpo-35194: Fix a wrong constant in cp932 codec (GH-10420) This typo doesn't affect the result because wrong bits are discarded on implicit conversion to unsigned char, but it trips UBSan with -fsanitize=implicit-integer-truncation. https://bugs.python.org/issue35194 09 November 2018, 07:12:06 UTC
0f221d0 bpo-24412: Adds cleanUps for setUpClass and setUpModule. (GH-9190) 09 November 2018, 02:34:33 UTC
49fa4a9 bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418) Fix an off by one error in the peephole optimizer when checking for unreachable code beyond a return. Do a bounds check within find_op so it can return before going past the end as a safety measure. https://github.com/python/cpython/commit/7db3c488335168993689ddae5914a28e16188447#diff-a33329ae6ae0bb295d742f0caf93c137 introduced this off by one error while fixing another one nearby. This bug was shipped in all Python 3.6 and 3.7 releases. The included unittest won't fail unless you do a clang msan build. 09 November 2018, 01:55:07 UTC
fd512d7 bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212) The call to `_untrack_reader` is performed too soon, causing the protocol to forget about the reader before `connection_lost` can run and feed the EOF to the reader. See bpo-35065. 08 November 2018, 12:21:47 UTC
5d95312 Replace dead code with an assertion in winreg.c. (GH-10028) 08 November 2018, 09:45:00 UTC
a44d34e bpo-34966: Improve support of method aliases in pydoc. (GH-9823) Pydoc now does not duplicate docstrings for aliases of inherited methods. 08 November 2018, 06:48:11 UTC
6843ffe Revert "bpo-32409: Fix regression in activate.bat on international Windows (GH-10295)" (GH-10403) This reverts commit c64583b6d3e8516a8cd2b5f84fc1e300bfac2206 due to multiple buildbot failures when building it. 07 November 2018, 23:55:40 UTC
556d50d Doc: Make all versions sidebars the same for consistency. (GH-10288) 07 November 2018, 23:11:49 UTC
b939250 Fix the construction of subprocess.CalledProcessError in test_venv (GH-10400) The constructor of subprocess.CalledProcessError in the check_output function had an extra None in it. 07 November 2018, 22:21:17 UTC
beed84c bpo-35015: Doc: Fix internationalisation of the availability directive. (GH-10360) 07 November 2018, 21:42:40 UTC
a6e956b bpo-34726: Fix handling of hash-based pycs in zipimport. (GH-10327) Current support for hash-based bytecode files in `zipimport` is rather sparse, which leads to test failures when the test suite is ran with the ``SOURCE_DATE_EPOCH`` environment variable set. This teaches zipimport to handle hash-based pycs properly. 07 November 2018, 18:34:59 UTC
bfe1839 Add link to PEP 525 in Expressions. (GH-10333) 07 November 2018, 18:12:12 UTC
ae31e3f glob uses fnmatch.filter instead of fnmatch since 2001. (GH-10102) 07 November 2018, 18:09:11 UTC
c5eec44 Add a reference to the name mangling description in the tutorial to the index. (GH-10138) 07 November 2018, 17:59:45 UTC
cdb96f4 Add future_stmt to simple_stmt production list. (GH-8239) 07 November 2018, 17:32:18 UTC
ca68261 Fix markup for xml.sax in 3.8 notes. (GH-9603) 07 November 2018, 17:29:14 UTC
d649910 Correct grammar mistakes in string.rst. (GH-9752) 07 November 2018, 17:24:56 UTC
back to top