https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
b82f612 Include the highest pickle protocol in a couple of tests test_reduce_ex() in test_array.py and test_reversevaluesiterator_pickling() in test_dict.py weren't using the highest pickle protocol. 27 November 2018, 04:02:22 UTC
da324d5 closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (GH-8712) 27 November 2018, 02:21:31 UTC
f2a9d5c bpo-35134: Create Include/cpython/pystate.h (GH-10733) Move pystate.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pystate.h header file. 26 November 2018, 23:20:00 UTC
ffedd9a bpo-35134: Create Include/cpython/dictobject.h (GH-10732) * Move dictobject.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/dictobject.h header file. * Add PyAPI_FUNC() to _PyDictView_New(). * Reorganize dictobject.h: move views and iterators at the end. 26 November 2018, 23:12:26 UTC
dd12aa0 bpo-35134: Create Include/cpython/pylifecycle.h (GH-10731) Move pylifecycle.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pylifecycle.h header file. 26 November 2018, 23:12:05 UTC
4060283 bpo-35134: Create Include/cpython/abstract.h (GH-10728) Move abstract.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/abstract.h header file. 26 November 2018, 21:42:04 UTC
8c281ed bpo-35308: Fix regression where BROWSER env var is not respected. (GH-10693) Regression introduced in e3ce695 and 25b804a, where the old parameter update_tryorder to _synthesize was first ignored, then given the opposite value in the attempt to fix bpo-31014. 26 November 2018, 21:29:45 UTC
5a8c240 bpo-35134: Add Include/cpython/pyerrors.h (GH-10727) Move pyerrors.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pyerrors.h header file. 26 November 2018, 21:11:25 UTC
65c216e bpo-33723: Fix test_time.test_thread_time() (GH-10724) Tolerate up to 30 ms, instead of 15 min, in other threads. 26 November 2018, 20:19:29 UTC
433433f Adds IPv6 support when invoking http.server directly. (GH-10595) 26 November 2018, 18:43:38 UTC
75e4699 bpo-35134: Create Include/cpython/unicodeobject.h (GH-10680) Move unicodeobject.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/unicodeobject.h header file. 26 November 2018, 16:29:38 UTC
5719f27 Doc: Delete now useless Windows FAQ section (GH-10557) 26 November 2018, 16:13:41 UTC
6eb9966 bpo-35134: Create Include/cpython/object.h (GH-10679) * Move object.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/object.h header file. * "typedef struct _typeobject PyTypeObject;" is now always defined in object.h, but if Py_LIMITED_API is not defined, Include/cpython/object.h also defines the structure. * Complete the printfunc comment to mention Py_LIMITED_API define. 26 November 2018, 16:09:16 UTC
282c03d pythoninfo: log more environment variable (GH-10719) Log TZ to debug a timezone issue... and a few more :-) 26 November 2018, 16:03:16 UTC
59423e3 bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) Fix str.format(), float.__format__() and complex.__format__() methods for non-ASCII decimal point when using the "n" formatter. Changes: * Rewrite _PyUnicode_InsertThousandsGrouping(): it now requires a _PyUnicodeWriter object for the buffer and a Python str object for digits. * Rename FILL() macro to unicode_fill(), convert it to static inline function, add "assert(0 <= start);" and rework its code. 26 November 2018, 12:40:01 UTC
df108dc Add assertion to _PyTuple_CAST(op) (GH-10712) Add "assert(PyTuple_Check(op));" to _PyTuple_CAST() to check that the argument is a tuple object in debug mode. PyTuple_GET_SIZE() now uses _PyTuple_CAST() to get its assertion. 26 November 2018, 12:37:13 UTC
c2e1607 bpo-34100: Merge constants recursively (GH-8341) There are some same consts in a module. This commit merges them into single instance. It reduces number of objects in memory after loading modules. https://bugs.python.org/issue34100 26 November 2018, 12:23:22 UTC
f0b366a bpo-35313: Cleanup test_embed.py (GH-10716) * Remove an unused import. * Move get_expected_config() call to check_config() to ease backport to Python 3.7. 26 November 2018, 11:37:34 UTC
a6537fb bpo-35313: Fix test_embed when run from venv (GH-10713) test_embed.InitConfigTests now gets the expected configuration from a child process run with -S to not run the site module. 26 November 2018, 10:54:12 UTC
f0e0f20 bpo-35300: Add usage note to the lru_cache() docs (GH-10707) https://bugs.python.org/issue35300 26 November 2018, 00:24:52 UTC
ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) Move _PyTuple_ITEMS() to a new header file: Include/internal/pycore_tupleobject.h 25 November 2018, 22:56:17 UTC
8ac6539 bpo-35081: Add _PyTuple_CAST() (GH-10704) 25 November 2018, 22:30:32 UTC
1586958 closes bpo-35309: cpath should be capath (GH-10699) 25 November 2018, 18:32:50 UTC
4bb186d bpo-32035: Fix words about strings and bytes in zipfile documentation. (GH-10592) 25 November 2018, 07:51:14 UTC
7f4ba4a Doc: Bump sphinx. (GH-10676) 24 November 2018, 10:35:21 UTC
5b83ef7 bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689) 23 November 2018, 19:26:46 UTC
1d817e4 bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856) Importing ProcessPoolExecutor may hang or cause an error when the import accesses urandom on a low resource platform https://bugs.python.org/issue29877 23 November 2018, 17:06:55 UTC
9de3632 bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675) The "-I" command line option (run Python in isolated mode) is now also copied by the multiprocessing and distutils modules when spawning child processes. Previously, only -E and -s options (enabled by -I) were copied. subprocess._args_from_interpreter_flags() now copies the -I flag. 23 November 2018, 16:54:20 UTC
ba57963 Linkify SMTP.quit() in smtplib documentation. (GH-9785) 23 November 2018, 16:53:24 UTC
e421106 bpo-35134: Create Include/cpython/ subdirectory (GH-10624) Include/*.h should be the "portable Python API", whereas Include/cpython/*.h should be the "CPython API": CPython implementation details. Changes: * Create Include/cpython/ subdirectory * "make install" now creates $prefix/include/cpython and copy Include/cpython/* to $prefix/include/cpython * Create Include/cpython/objimpl.h: move objimpl.h code surrounded by "#ifndef Py_LIMITED_API" to cpython/objimpl.h. * objimpl.h now includes cpython/objimpl.h * Windows installer (MSI) now also install Include/ subdirectories: Include/cpython/ and Include/internal/. 23 November 2018, 16:00:00 UTC
b409ffa bpo-35189: Retry fnctl calls on EINTR (GH-10413) Modify the following fnctl function to retry if interrupted by a signal (EINTR): flock, lockf, fnctl. 23 November 2018, 15:46:12 UTC
f653fd4 bpo-35296: make install now installs the internal API (GH-10665) make install now also installs the internal API: Include/internal/*.h header files. 23 November 2018, 15:30:12 UTC
a1c4001 Doc: Delete "how do I emulate os.kill" section in Windows FAQ (GH-10487) That section is a tip on how to kill process on Windows for Python prior to 2.7 and 3.2. 3.1 end of support was April 2012 and 2.6 was October 2013, so that hasn't been need for supported versions of Python for more than 5 years. Beside not being needed anymore for a long time, when I read it with the eyes of a Python profane, it makes Python looks bad, like a language from the parts with warts you need to circumvent. Let's delete that :) 23 November 2018, 14:35:07 UTC
4ac5328 bpo-35081: add NEWS entry for new Include/internal/pycore_*.h files (GH-10666) 23 November 2018, 14:05:15 UTC
b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) PyObject_INIT() and PyObject_INIT_VAR() now cast their first argument to PyObject*, as done in Python 3.7. Revert partially commit b4435e20a92af474f117b78b98ddc6f515363af5. 23 November 2018, 13:27:38 UTC
353933e bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672) bpo-34523, bpo-35290: C locale coercion now resets the Python internal "force ASCII" mode. This change fix the filesystem encoding on FreeBSD CURRENT, which has a new "C.UTF-8" locale, when the UTF-8 mode is disabled. Add _Py_ResetForceASCII(): _Py_SetLocaleFromEnv() now calls it. 23 November 2018, 12:08:26 UTC
e89607c bpo-35059: NEWS entry for macros converted to inline funcs (GH-10671) 23 November 2018, 11:34:35 UTC
984061e bpo-35081: Add new internal headers to Makefile (GH-10670) Add pycore_fileutils.h and pycore_object.h to Makefile.pre.in and to the pythoncore project of PCbuild/. 23 November 2018, 11:30:40 UTC
3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) Partially revert commit 5f2df88b63e50d23914e97ec778861a52abdeaad: add "#undef Yield" to .c files after including Python-ast.h. Fix the warning: winbase.h(102): warning C4005: 'Yield': macro redefinition 22 November 2018, 17:38:38 UTC
2cf5d32 bpo-9263: Fix _PyObject_Dump() for freed object (#10661) If _PyObject_Dump() detects that the object is freed, don't try to dump it (exit immediately). Enhance also _PyObject_IsFreed(): it now detects if the pointer itself looks like freed memory. 22 November 2018, 15:32:57 UTC
9a0d7a7 bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657) os_read_impl() now also truncates the size to _PY_READ_MAX on macOS, to avoid to allocate a larger buffer even if _Py_read() is limited to _PY_READ_MAX bytes (ex: INT_MAX on macOS). 22 November 2018, 14:03:40 UTC
4d73ae7 bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655) When iterating using asdl_seq_LEN(), use 'Py_ssize_t' type instead of 'int' for the iterator variable, to avoid downcast on 64-bit platforms. _Py_asdl_int_seq_new() now also ensures that the index is greater than or equal to 0. 22 November 2018, 13:45:16 UTC
c48ff73 bpo-18407: win32_urandom() uses PY_DWORD_MAX (GH-10656) CryptGenRandom() maximum size is PY_DWORD_MAX, not INT_MAX. Use DWORD type for the 'chunk' variable Co-Authored-By: Jeremy Kloth <jeremy.kloth@gmail.com> 22 November 2018, 13:43:07 UTC
28f468c bpo-9566: Fix compiler warnings in pyexpat.c (GH-10654) Explicit cast a pointer difference (intptr_t) to int to fix two warnings on 64-bit Windows: Modules\pyexpat.c(1181): warning C4244: 'initializing': conversion from '__int64' to 'int', possible loss of data Modules\pyexpat.c(1192): warning C4244: 'initializing': conversion from '__int64' to 'int', possible loss of data 22 November 2018, 12:21:43 UTC
cdbcb77 cjkcodecs: Fix compiler warning (GH-10651) Fixed the following compiler warning in multibytecodec.c: warning C4244: '=': conversion from 'Py_ssize_t' to 'unsigned char', possible loss of data Cast Py_ssize_t to unsigned char: the maximum value is checked on the previous line. 22 November 2018, 09:25:46 UTC
a42de74 bpo-35059: Cast void* to PyObject* (GH-10650) Don't pass void* to Python macros: use _PyObject_CAST(). 22 November 2018, 09:25:22 UTC
b37672d bpo-35059: Cleanup usage of Python macros (GH-10648) Don't pass complex expressions but regular variables to Python macros. * _datetimemodule.c: split single large "if" into two "if" in date_new(), time_new() and datetime_new(). * _pickle.c, load_extension(): flatten complex "if" expression into more regular C code. * _ssl.c: addbool() now uses a temporary bool_obj to only evaluate the value once. * weakrefobject.c: replace "Py_INCREF(result = proxy);" with "result = proxy; Py_INCREF(result);" 22 November 2018, 02:37:50 UTC
2ff8fb7 bpo-35059: Add _PyObject_CAST() macro (GH-10645) Add _PyObject_CAST() and _PyVarObject_CAST() macros to cast argument to PyObject* and PyVarObject* properly. 22 November 2018, 01:57:29 UTC
271753a bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643) * Add _PyObject_ASSERT_FROM() and _PyObject_ASSERT_FAILED_MSG() macros. * PyObject_GC_Track() now calls _PyObject_ASSERT_FAILED_MSG(), instead of Py_FatalError(), if the object is already tracked, to dump more information on error. * _PyObject_GC_TRACK() no longer checks if the object is already tracked at runtime, use an assertion instead for best performances; PyObject_GC_Track() still checks at runtime. * pycore_object.h now includes pycore_pystate.h. * Convert _PyObject_GC_TRACK() and _PyObject_GC_UNTRACK() macros to inline functions. 22 November 2018, 00:02:54 UTC
f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) Enhance _PyObject_AssertFailed() * Exchange 'expr' and 'msg' parameters * 'expr' and 'func' arguments can now be NULL 21 November 2018, 22:53:44 UTC
bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) Move _PyObject_GC_TRACK() and _PyObject_GC_UNTRACK() from Include/objimpl.h to Include/internal/pycore_object.h. 21 November 2018, 21:27:47 UTC
aac1f81 bpo-35189: Fix eintr_tester.py (GH-10637) Call setitimer() before each test method, instead of once per test case, to ensure that signals are sent in each test method. Previously, only the first method of a testcase class got signals. Changes: * Replace setUpClass() with setUp() and replace tearDownClass() with tearDown(). * tearDown() now ensures that at least one signal has been sent. * Replace support.run_unittest() with unittest.main() which has a nicer CLI and automatically discover test cases. 21 November 2018, 15:33:13 UTC
361e868 bpo-35035: Rename email.utils documentation to email.utils.rst (GH-10023) I'll watch for 404 on the old URL and will setup an HTTP redirection if needed. 21 November 2018, 12:41:07 UTC
7c2d570 bpo-35290: Add debug info to test_c_locale_coercion (GH-10631) In verbose mode, test_c_locale_coercion now dumps global variables at startup. 21 November 2018, 11:21:25 UTC
d936a8f bpo-35221: Additional hint that the placeholder is to be replaced. (GH-10604) 21 November 2018, 08:40:05 UTC
3e21ad1 bpo-35081: Move _PyGC_FINALIZED() back to C API (GH-10626) Partially revert commit 1a6be91e6fd65ce9cb88cbbbb193db7e92ec6076, move back PyGC API from the internal API to the C API: * _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) * _PyGC_PREV_MASK_FINALIZED * _PyGC_PREV_MASK_COLLECTING * _PyGC_PREV_SHIFT * _PyGC_PREV_MASK _PyObject_GC_TRACK(o) and _PyObject_GC_UNTRACK(o) remain in the internal API. 20 November 2018, 23:43:09 UTC
c8fe9cc bpo-34532: Fixed exit code for py.exe list versions arg (GH-9039) 20 November 2018, 21:28:27 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
back to top