Showing content from http://mail.python.org/pipermail/python-checkins/2020-November/thread.html below:
The Python-checkins November 2020 Archive by thread
November 2020 Archives by thread
Starting: Sun Nov 1 01:33:16 EST 2020
Ending: Mon Nov 30 23:43:00 EST 2020
Messages: 411
- [Python-checkins] bpo-42146: Unify cleanup in subprocess_fork_exec() (GH-22970) gpshead
- [Python-checkins] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) miss-islington
- [Python-checkins] [3.8] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23070) miss-islington
- [Python-checkins] [3.9] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23071) miss-islington
- [Python-checkins] tempfile: Use random.choises() instead of choise() (GH-23068) methane
- [Python-checkins] bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062) corona10
- [Python-checkins] Expand and clarify the "Invoking Descriptors" section of the Descriptor HowTo (GH-23078) rhettinger
- [Python-checkins] Expand and clarify the "Invoking Descriptors" section of the Descriptor HowTo (GH-23078) (GH-23080) rhettinger
- [Python-checkins] bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081) miss-islington
- [Python-checkins] bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083) vstinner
- [Python-checkins] bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086) vstinner
- [Python-checkins] bpo-37193: remove thread objects which finished process its request (GH-13893) jaraco
- [Python-checkins] Add member objects to the descriptor howto guide (GH-23084) rhettinger
- [Python-checkins] Add member objects to the descriptor howto guide (GH-23084) (GH-23090) rhettinger
- [Python-checkins] bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910) terryjreedy
- [Python-checkins] Minor formatting edits to the descriptor howto guide (GH-23092) rhettinger
- [Python-checkins] Minor formatting edits to the descriptor howto guide (GH-23092) (GH-23095) rhettinger
- [Python-checkins] bpo-41229: Update docs for explicit aclose()-required cases and add contextlib.aclosing() method (GH-21545) miss-islington
- [Python-checkins] bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073) asvetlov
- [Python-checkins] [3.8] bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073) (GH-23105) asvetlov
- [Python-checkins] bpo-41435: Add sys._current_exceptions() function (GH-21689) serhiy-storchaka
- [Python-checkins] bpo-42224: Fix test_format when locale does not expect number grouping (GH-23067) lysnikolaou
- [Python-checkins] bpo-42236: Enhance init and encoding documentation (GH-23109) vstinner
- [Python-checkins] Revert "bpo-37193: remove thread objects which finished process its request (GH-13893)" (GH-23107) pablogsal
- [Python-checkins] bpo-41943: Fix bug where assertLogs doesn't correctly filter messages… (GH-22565) miss-islington
- [Python-checkins] bpo-42103: Improve validation of Plist files. (GH-22882) serhiy-storchaka
- [Python-checkins] bpo-41796: Make _ast module state per interpreter (GH-23024) vstinner
- [Python-checkins] bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053) vstinner
- [Python-checkins] bpo-35455: Fix thread_time for Solaris OS (GH-11118) pablogsal
- [Python-checkins] bpo-42180: fix plural in arguments and control (GH-23015) (GH-23114) pablogsal
- [Python-checkins] [3.8] bpo-42103: Improve validation of Plist files. (GH-22882) (GH-23116) serhiy-storchaka
- [Python-checkins] bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108) vstinner
- [Python-checkins] bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121) serhiy-storchaka
- [Python-checkins] bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131) vstinner
- [Python-checkins] Python 3.10.0a2 pablogsal
- [Python-checkins] Add _PyType_GetModuleByDef (GH-22835) encukou
- [Python-checkins] Fix incorrect links in ast docs (GH-23017) lysnikolaou
- [Python-checkins] Enable signing of nuget.org packages and update to supported timestamp server (GH-23132) zooba
- [Python-checkins] bpo-42251: Add gettrace and getprofile to threading (GH-23125) pablogsal
- [Python-checkins] bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119) vstinner
- [Python-checkins] bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122) vstinner
- [Python-checkins] bpo-35455: Fix thread_time for Solaris OS (GH-11118) (GH-23130) pablogsal
- [Python-checkins] [3.8] bpo-35455: Fix thread_time for Solaris OS (GH-11118). (GH-23145) pablogsal
- [Python-checkins] bpo-42260: Reorganize PyConfig (GH-23149) vstinner
- [Python-checkins] bpo-1635741: _contextvars uses PyModule_AddType() (GH-23147) vstinner
- [Python-checkins] bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146) vstinner
- [Python-checkins] bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151) vstinner
- [Python-checkins] bpo-42260: Main init modify sys.flags in-place (GH-23150) vstinner
- [Python-checkins] bpo-1635741: Fix PyInit_pyexpat() error handling (GH-22489) vstinner
- [Python-checkins] bpo-1635741: _sqlite3 uses PyModule_AddObjectRef() (GH-23148) vstinner
- [Python-checkins] Disable peg generator tests when building with PGO (GH-23141) pablogsal
- [Python-checkins] bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158) vstinner
- [Python-checkins] bpo-40816 Add AsyncContextDecorator class (GH-20516) asvetlov
- [Python-checkins] bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157) pablogsal
- [Python-checkins] bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152) vstinner
- [Python-checkins] [docs] fix wrongly named AsyncContextDecorator (GH-23164) asvetlov
- [Python-checkins] bpo-41877 Check for asert, aseert, assrt in mocks (GH-23165) gpshead
- [Python-checkins] bpo-42260: Add _PyConfig_FromDict() (GH-23167) vstinner
- [Python-checkins] bpo-42260: PyConfig_Read() only parses argv once (GH-23168) vstinner
- [Python-checkins] bpo-26389: Allow passing an exception object in the traceback module (GH-22610) pablogsal
- [Python-checkins] bpo-42179: Doc/tutorial: Remove mention of __cause__ (GH-23162) methane
- [Python-checkins] Minor grammar edits for the descriptor howto guide (GH-#23175) rhettinger
- [Python-checkins] bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123) vstinner
- [Python-checkins] Remove outdated reference to pywin32 from platform module (GH-22005) zooba
- [Python-checkins] Minor grammar edits for the descriptor howto guide (GH-#23175) (GH-23186) rhettinger
- [Python-checkins] bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when `__loader__` is missing (#22929) brettcannon
- [Python-checkins] bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969) JulienPalard
- [Python-checkins] bpo-42282: Fold constants inside named expressions (GH-23190) ncoghlan
- [Python-checkins] bpo-40077: Convert _queuemodule to use heap types (GH-23136) miss-islington
- [Python-checkins] Minor wording change in concurrent.futures. (GH-23194) asvetlov
- [Python-checkins] bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) ronaldoussoren
- [Python-checkins] bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075) ronaldoussoren
- [Python-checkins] bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075) (GH-23198) ronaldoussoren
- [Python-checkins] bpo-42233: Add union type expression support for GenericAlias and fix de-duplicating of GenericAlias (GH-23077) gvanrossum
- [Python-checkins] bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147) scoder
- [Python-checkins] bpo-41543: contextlib.nullcontext can fill in for an async context manager (GH-21870) asvetlov
- [Python-checkins] bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206) vstinner
- [Python-checkins] bpo-41712: Avoid runaway regex match in upload scripts (GH-23166) zooba
- [Python-checkins] bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19875) isidentical
- [Python-checkins] Fix typo in unicodeobject.c (GH-23180) miss-islington
- [Python-checkins] bpo-42260: Compute the path config in the main init (GH-23211) vstinner
- [Python-checkins] Fix typo in test_array.py (GH-23189) tirkarthi
- [Python-checkins] bpo-42171: Add PEP573-related items to the limited API (GH-23009) miss-islington
- [Python-checkins] bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-23020) asvetlov
- [Python-checkins] Update whatsnew for 3.10 release about addition of contextlib.aclosing (GH-23217) asvetlov
- [Python-checkins] bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585) miss-islington
- [Python-checkins] [3.7] bpo-42103: Improve validation of Plist files. (GH-22882) (#23117) ned-deily
- [Python-checkins] [3.6] bpo-42103: Improve validation of Plist files. (GH-22882) (GH-23118) ned-deily
- [Python-checkins] bpo-35560: Remove assertion from format(float, "n") (GH-11288) (GH-23231) ned-deily
- [Python-checkins] bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780) 1st1
- [Python-checkins] bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220) vstinner
- [Python-checkins] bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931) miss-islington
- [Python-checkins] bpo-42140: Improve asyncio.wait function (GH-22938) miss-islington
- [Python-checkins] [3.9] bpo-4bpo-42314: Fix the documentation for venv --upgrade-deps (GH-22113) (GH-23232) vsajip
- [Python-checkins] bpo-42294: Grammar fixes in doc glossary strong/weak refs (GH-23227) vstinner
- [Python-checkins] bpo-1635741: Fix typo in PyModule_AddObjectRef() doc (GH-23234) vstinner
- [Python-checkins] bpo-39411: pyclbr rewrite on AST (#18103) isidentical
- [Python-checkins] bpo-40932: Note security caveat of shlex.quote on Windows (GH-21502) miss-islington
- [Python-checkins] bpo-40170: Fix PyType_Ready() refleak on static type (GH-23236) vstinner
- [Python-checkins] Fix memory leak introduced by GH-22780 (GH-23237) asvetlov
- [Python-checkins] bpo-42246: Partial implementation of PEP 626. (GH-23113) markshannon
- [Python-checkins] bpo-42237: Fix os.sendfile() on illumos (GH-23154) asvetlov
- [Python-checkins] Bump magic number. (GH-23245) markshannon
- [Python-checkins] [3.8] bpo-42237: Fix os.sendfile() on illumos (GH-23154). (GH-23246) asvetlov
- [Python-checkins] bpo-38823: Fix refleaks in _ctypes extension init (GH-23247) vstinner
- [Python-checkins] bpo-42260: Initialize time and warnings earlier at startup (GH-23249) vstinner
- [Python-checkins] bpo-38823: Always build _ctypes with wchar_t (GH-23248) vstinner
- [Python-checkins] bpo-42308: Add threading.__excepthook__ (GH-23218) vstinner
- [Python-checkins] bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251) markshannon
- [Python-checkins] [3.9] bpo-42086: Document AST operator nodes acts as a singleton (GH-22896) (GH-22897) miss-islington
- [Python-checkins] bpo-42246: Fix memory leak in compiler (GH-23256) markshannon
- [Python-checkins] bpo-38823: Fix compiler warning in _ctypes on Windows (GH-23258) vstinner
- [Python-checkins] bpo-42296: On Windows, fix CTRL+C regression (GH-23257) vstinner
- [Python-checkins] bpo-41617: Add _Py__has_builtin() macro (GH-23260) vstinner
- [Python-checkins] bpo-42042: Use ids attribute instead of names attribute (GH-22739) corona10
- [Python-checkins] bpo-40968: Send http/1.1 ALPN extension (#20959) tiran
- [Python-checkins] bpo-41617: Add _Py__has_builtin() macro (GH-23260) (GH-23262) vstinner
- [Python-checkins] [3.9] bpo-42042: Use ids attribute instead of names attribute (GH-22739) (GH-23265) corona10
- [Python-checkins] bpo-42344: Improve pseudo implementation for SimpleNamespace (GH-23264) ericvsmith
- [Python-checkins] bpo-42344: Improve pseudo implementation for SimpleNamespace (GH-23264) (GH-23269) ericvsmith
- [Python-checkins] bpo-42344: Improve pseudo implementation for SimpleNamespace (GH-23264) (GH-23270) ericvsmith
- [Python-checkins] bpo-41001: Add os.eventfd() (#20930) tiran
- [Python-checkins] bpo-40754: Adds _testinternalcapi to Windows installer for test suite (GH-23271) zooba
- [Python-checkins] bpo-42131: Add PEP 451-related methods to zipimport (GH-23187) brettcannon
- [Python-checkins] fix typo in ThreadedChildWatcher docs (GH-23277) asvetlov
- [Python-checkins] bpo-41832: Restore note about NULL in PyType_Slot.pfunc (GH-23243) encukou
- [Python-checkins] bpo-42351: Avoid error when opening header with non-UTF8 encoding (GH-23279) ronaldoussoren
- [Python-checkins] bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23281) serhiy-storchaka
- [Python-checkins] bpo-42317: Improve docs of typing.get_args concerning Union (GH-23254) miss-islington
- [Python-checkins] More updates to the descriptor howto guide (GH-23238) rhettinger
- [Python-checkins] More updates to the descriptor howto guide (GH-23238) (GH-23308) rhettinger
- [Python-checkins] bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) miss-islington
- [Python-checkins] bpo-42153 Fix link to IMAP documents in imaplib.rst (GH-23297) gvanrossum
- [Python-checkins] bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284) vstinner
- [Python-checkins] bpo-42350: Fix Thread._reset_internal_locks() (GH-23268) vstinner
- [Python-checkins] bpo-37205: time.time() cannot fail with fatal error (GH-23314) vstinner
- [Python-checkins] bpo-42087: Remove support for AIX 5.3 and below (GH-22830) vstinner
- [Python-checkins] bpo-40939: Document removal of the old parser in 3.10 whatsnew (GH-23321) miss-islington
- [Python-checkins] bpo-42339: Adds note about KB2533623 to embeddable package docs (GH-23322) zooba
- [Python-checkins] bpo-38506: Fix the Windows py.exe launcher's misordering of 3.10 (GH-18307) zooba
- [Python-checkins] bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) miss-islington
- [Python-checkins] bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317) lysnikolaou
- [Python-checkins] bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326) zooba
- [Python-checkins] bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) (GH-23329) lysnikolaou
- [Python-checkins] Add GCC pragmas to silence compiler warning about ffi_prep_closure (GH-23327) pablogsal
- [Python-checkins] bpo-41625: Expose the splice() system call in the os module (GH-21947) pablogsal
- [Python-checkins] bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332) pablogsal
- [Python-checkins] bpo-42345: Fix three issues with typing.Literal parameters (GH-23294) miss-islington
- [Python-checkins] [3.8] Remove outdated reference to pywin32 from platform module (GH-22005) (GH-23184) miss-islington
- [Python-checkins] [3.9] bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326) (GH-23331) miss-islington
- [Python-checkins] bpo-41861, _sqlite3 : Add NEWS entry and rename variables (GH-23337) vstinner
- [Python-checkins] bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980) tiran
- [Python-checkins] bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342) vstinner
- [Python-checkins] [3.9] bpo-42345: Fix three issues with typing.Literal parameters (GH-23294) (GH-23335) miss-islington
- [Python-checkins] bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163) serhiy-storchaka
- [Python-checkins] bpo-41686: Always create the SIGINT event on Windows (GH-23344) vstinner
- [Python-checkins] bpo-41686: Refactor signal_exec() (GH-23346) vstinner
- [Python-checkins] bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) vstinner
- [Python-checkins] bpo-41625: Add versionadded to os.splice() constants (GH-23340) pablogsal
- [Python-checkins] bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267) markshannon
- [Python-checkins] [3.9] bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395) (GH-23303) markshannon
- [Python-checkins] bpo-41625: Specify that Linux >= 2.6.17 *and* glibc >= 2.5 are requir… (GH-23351) miss-islington
- [Python-checkins] bpo-41625: Add a guard for Linux for splice() constants in the os module (GH-23350) miss-islington
- [Python-checkins] bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) (GH-23349) vstinner
- [Python-checkins] Fix: Docstrings hidden by slots. (GH-23352) miss-islington
- [Python-checkins] bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353) vstinner
- [Python-checkins] bpo-41625: Skip os.splice() tests on AIX (GH-23354) vstinner
- [Python-checkins] bpo-41713: Port _signal module to multi-phase init (GH-23355) vstinner
- [Python-checkins] [3.9] bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) (GH-23309) miss-islington
- [Python-checkins] bpo-42396: Add a whatsnew entry about async contextlib.nullcontext (GH-23357) miss-islington
- [Python-checkins] bpo-42395: Add aclosing to __all__ (GH-23356) miss-islington
- [Python-checkins] bpo-40656: Clean up detect_socket() (GH-20148) ned-deily
- [Python-checkins] bpo-41561: skip test_min_max_version_mismatch (GH-22308) tiran
- [Python-checkins] [3.9] bpo-41561: skip test_min_max_version_mismatch (GH-22308) (GH-23363) miss-islington
- [Python-checkins] bpo-42398: Fix "make regen-all" race condition (GH-23362) vstinner
- [Python-checkins] bpo-40998: Fix a refleak in create_filter() (GH-23365) miss-islington
- [Python-checkins] bpo-1635741: Port symtable module to multiphase initialization (GH-23361) miss-islington
- [Python-checkins] bpo-1635741: Port _hashlib to multiphase initialization (GH-23358) tiran
- [Python-checkins] bpo-40998: Address compiler warnings found by ubsan (GH-20929) miss-islington
- [Python-checkins] bpo-42398: Fix "make regen-all" race condition (GH-23362) (GH-23367) vstinner
- [Python-checkins] bpo-42336: Improve PCbuild batch files (GH-23275) zooba
- [Python-checkins] bpo-42336: Improve PCbuild batch files (GH-23325) zooba
- [Python-checkins] [3.9] bpo-40998: Fix a refleak in create_filter() (GH-23365) (GH-23369) miss-islington
- [Python-checkins] bpo-39573: Convert Py_TYPE() and Py_SIZE() back to macros (GH-23366) vstinner
- [Python-checkins] [3.7] bpo-42336: Improve PCbuild batch files (GH-23325) (GH-23373) ned-deily
- [Python-checkins] bpo-42085: Add documentation for Py_TPFLAGS_HAVE_AM_SEND (GH-23374) miss-islington
- [Python-checkins] bpo-39573: Remove What's new entry for Py_SIZE() (GH-23375) vstinner
- [Python-checkins] bpo-1635741: Convert _imp to multi-phase init (GH-23378) vstinner
- [Python-checkins] [3.9] bpo-38320: Clarify that expectedFailure is satisfied by either failure or error of the test. (GH-22740) (GH-22783) miss-islington
- [Python-checkins] [3.8] bpo-38320: Clarify that expectedFailure is satisfied by either failure or error of the test. (GH-22740) (GH-22782) miss-islington
- [Python-checkins] [doc] Fix smtplib and xml.dom.minidom mark-up (GH-22769) JulienPalard
- [Python-checkins] bpo-1635741: Port _warnings to the multi-phase init (GH-23379) vstinner
- [Python-checkins] [3.9] Minor grammar edits for the descriptor howto guide (GH-GH-23175) (GH-23176) miss-islington
- [Python-checkins] [3.9] bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332) (GH-23333) pablogsal
- [Python-checkins] bpo-42381: Document walrus-related syntax changes in whatsnew (GH-23382) miss-islington
- [Python-checkins] bpo-42345: Add whatsnew for typing.Literal in 3.10 (GH-23385) gvanrossum
- [Python-checkins] bpo-42375: subprocess DragonFlyBSD build update. (GH-23320) miss-islington
- [Python-checkins] bpo-1635741: Port _random to multiphase initialization (GH-23359) miss-islington
- [Python-checkins] bpo-1635741: Port grp and pwd to multiphase initialization (GH-23360) miss-islington
- [Python-checkins] bpo-1635741: Port _queue to multiphase initialization (GH-23376) miss-islington
- [Python-checkins] bpo-1635741: Port spwd to multiphase initialization (GH-23390) tiran
- [Python-checkins] bpo-42403: Fix pyflakes warnings in importlib (GH-23396) vstinner
- [Python-checkins] bpo-42403: Simplify importlib external bootstrap (GH-23397) vstinner
- [Python-checkins] bpo-1635741: Port _struct to multiphase initialization (GH-23398) corona10
- [Python-checkins] bpo-1635741: Port gc module to multiphase initialization (GH-23377) miss-islington
- [Python-checkins] bpo-1635741: Fix _struct for build bot error (GH-23402) miss-islington
- [Python-checkins] bpo-1635741: Port _posixshmem extension module to multiphase initialization (GH-23404) miss-islington
- [Python-checkins] bpo-42345: Fix hash implementation of typing.Literal (GH-23383) miss-islington
- [Python-checkins] bpo-42345: Add whatsnew and versionchanged for typing.Literal in 3.9 (GH-23386) miss-islington
- [Python-checkins] bpo-42416: Use inspect.getdoc for IDLE calltips (GH-23416) terryjreedy
- [Python-checkins] bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413) miss-islington
- [Python-checkins] bpo-42333: Port _ssl extension module to heap types (GH-23392) tiran
- [Python-checkins] bpo-1635741: Enhance _datetime error handling (GH-23139) vstinner
- [Python-checkins] bpo-1635741: Convert _sre types to heap types and establish module state (PEP 384) (GH-23393) corona10
- [Python-checkins] bpo-42403: Use @staticmethod in importlib (GH-23395) vstinner
- [Python-checkins] bpo-42212: Check if generated files are up-to-date in GitHub Actions (GH-23042) vstinner
- [Python-checkins] bpo-35498: Added slice support to PathLib parents attribute. (GH-11165) pganssle
- [Python-checkins] Fix wrong availability for signal.SIGCHLD (#23285) asvetlov
- [Python-checkins] bpo-42360: Add advice to help avoid pickling issues. (GH-23305) rhettinger
- [Python-checkins] bpo-28002: Roundtrip f-strings with ast.unparse better (#19612) isidentical
- [Python-checkins] bpo-42360: Add advice to help avoid pickling issues. (GH-23305) (GH-23429) rhettinger
- [Python-checkins] bpo-28002: Roundtrip f-strings with ast.unparse better (GH-19612) (GH-23430) isidentical
- [Python-checkins] bpo-36876: [c-analyzer tool] Tighten up the results and output. (GH-23431) ericsnowcurrently
- [Python-checkins] bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400) terryjreedy
- [Python-checkins] bpo-42419: Correct 'deprecatations' is What's New 3.9 (GH-23421) terryjreedy
- [Python-checkins] bpo-42419: Correct 'deprecatations' is What's New 3.9 (GH-23421) (GH-23435) terryjreedy
- [Python-checkins] bpo-40791: Make compare_digest more constant-time. (GH-20444) gpshead
- [Python-checkins] bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_signal. (GH-20010) gpshead
- [Python-checkins] bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec() (GH-23410) serhiy-storchaka
- [Python-checkins] Fix wrong availability for signal.SIGCHLD (GH-23285) (#23426) asvetlov
- [Python-checkins] Fix wrong availability for signal.SIGCHLD (GH-23285) (#23425) asvetlov
- [Python-checkins] bpo-42232: mmap module add Darwin specific madvise options. (GH-23076) miss-islington
- [Python-checkins] bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446) serhiy-storchaka
- [Python-checkins] bpo-1635741: Port _posixsubprocess module to multiphase init (GH-23406) tiran
- [Python-checkins] bpo-1635741: Port select module to multiphase init (GH-23409) tiran
- [Python-checkins] Clarify that Set._from_iterable is not required to be a classmethod. (GH-23272) rhettinger
- [Python-checkins] Clarify that Set._from_iterable is not required to be a classmethod. (GH-23272) (GH-23450) rhettinger
- [Python-checkins] bpo-38443: Check that the specified universal architectures work (GH-22910) miss-islington
- [Python-checkins] [3.9] bpo-38443: Check that the specified universal architectures work (GH-22910) (GH-23451) miss-islington
- [Python-checkins] bpo-42361: Use Tcl/Tk 8.6.10 when building the installer on recent macOS (GH-23293) miss-islington
- [Python-checkins] bpo-41100: Stripping '-arch arm64' didn't work after all (GH-23280) ned-deily
- [Python-checkins] bpo-42426: IDLE: Fix reporting offset of the RE error in searchengine (GH-23447) terryjreedy
- [Python-checkins] bpo-41116: Ensure system supplied libraries are found on macOS 11 (GH-23301) ned-deily
- [Python-checkins] bpo-42391: Clarify documentation of TestCase.assertIs (GH-23348) terryjreedy
- [Python-checkins] bpo-41116: Ensure system supplied libraries are found on macOS 11 (GH-23301) (GH-23455) ned-deily
- [Python-checkins] bpo-42427: Use the errno attribute of OSError instead of args[0] (GH-23449) serhiy-storchaka
- [Python-checkins] [3.9] bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) (GH-23295) ronaldoussoren
- [Python-checkins] bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441) serhiy-storchaka
- [Python-checkins] Doc: fix typo in typing.Type docs (GH-23460) corona10
- [Python-checkins] bpo-40791: Make compare_digest more constant-time. (GH-23438) benjaminp
- [Python-checkins] bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461) serhiy-storchaka
- [Python-checkins] bpo-42328: Fix tkinter.ttk.Style.map(). (GH-23300) serhiy-storchaka
- [Python-checkins] bpo-41100: Update Whatsnew and installer ReadME for 3.9.1 (GH-23472) ned-deily
- [Python-checkins] bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small containers (GH-22120) taleinat
- [Python-checkins] bpo-15450: Allow subclassing of dircmp (GH-23424) (#23424) asvetlov
- [Python-checkins] Descriptor HowTo: Improve the fidelity of the member object simulation (GH-23475) rhettinger
- [Python-checkins] Descriptor HowTo: Improve the fidelity of the member object simulation (GH-23475) (GH-23479) rhettinger
- [Python-checkins] Added support for negative indexes to PurePath.parents (GH-21799) pganssle
- [Python-checkins] Typo (#23482) jcea
- [Python-checkins] bpo-41100: minor build installer fixes (GH-23480) ned-deily
- [Python-checkins] Typo (GH-23482) (#23483) jcea
- [Python-checkins] bpo-41100: in test_platform, ignore 10.16 (GH-23485) ned-deily
- [Python-checkins] bpo-41100: in test_platform, ignore 10.16 (GH-23485) (GH-23486) ned-deily
- [Python-checkins] bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488) serhiy-storchaka
- [Python-checkins] bpo-42212: smelly.py also checks the dynamic library (GH-23423) vstinner
- [Python-checkins] bpo-42370: Check element before making mouse click in ttk tests (GH-23491) serhiy-storchaka
- [Python-checkins] bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420) asvetlov
- [Python-checkins] bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235) vstinner
- [Python-checkins] Add doctests to the descriptor HowTo (GH-23500) rhettinger
- [Python-checkins] Doc: Minor fixes (GH-23422) methane
- [Python-checkins] Add doctests to the descriptor HowTo (GH-23500) (GH-23505) rhettinger
- [Python-checkins] bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (GH-23313) JulienPalard
- [Python-checkins] bpo-12800: tarfile: Restore fix from 011525ee9 (GH-21409) JulienPalard
- [Python-checkins] Add more tests to the descriptor howto guide (GH-23506) rhettinger
- [Python-checkins] Add more tests to the descriptor howto guide (GH-23506) (GH-23510) rhettinger
- [Python-checkins] bpo-42202: Store func annotations as a tuple (GH-23316) methane
- [Python-checkins] bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499) aeros
- [Python-checkins] bpo-42299: Remove formatter module (GH-23476) corona10
- [Python-checkins] bpo-41818: Updated tests for the standard pty library (GH-22962) asvetlov
- [Python-checkins] Typo: fix inverted sense of statement (GH-23288) miss-islington
- [Python-checkins] bpo-41818: test_openpty succeed on Gentoo, don't expect to fail on this platform (GH-23514) asvetlov
- [Python-checkins] Typo: fix inverted sense of statement (GH-23288) (GH-23512) rhettinger
- [Python-checkins] bpo-42392: Remove loop parameter from asyncio.streams (GH-23517) asvetlov
- [Python-checkins] bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-21533) asvetlov
- [Python-checkins] Document optional 'task'/'asyncgen' fields in call_exception_handler (#21735) asvetlov
- [Python-checkins] Python 3.9.1rc1 ambv
- [Python-checkins] bpo-17852: Doc: Fix the tutorial about closing files (GH-23135) methane
- [Python-checkins] bpo-41818: Make test_openpty() avoid unexpected success due to number of rows and/or number of columns being == 0. (GH-23526) asvetlov
- [Python-checkins] bpo-42474: test TracebackException comparison to non-equal instances (GH-23522) gvanrossum
- [Python-checkins] bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306) terryjreedy
- [Python-checkins] bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (GH-23521) asvetlov
- [Python-checkins] bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396) miss-islington
- [Python-checkins] bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925) asvetlov
- [Python-checkins] bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925) (#23540) asvetlov
- [Python-checkins] bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538) asvetlov
- [Python-checkins] bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925) (GH-23539) asvetlov
- [Python-checkins] bpo-31904: Fix test_os.test_getcwd_long_path() failure for VxWorks (GH-20256) vstinner
- [Python-checkins] bpo-41818: Fix test_master_read() so that it succeeds on all platforms that either raise OSError or return b"" upon reading from master (GH-23536) asvetlov
- [Python-checkins] Fix multiprocessing markup (GH-23525) gpshead
- [Python-checkins] Fix dis markup (GH-23524) gpshead
- [Python-checkins] Fix an error in the news entry for _posixsubprocess multiphase init (GH-23516) gpshead
- [Python-checkins] skip test_getaddrinfo_ipv6_scopeid_symbolic and test_getnameinfo_ipv6_scopeid_symbolic on VxWorks (GH-23518) gpshead
- [Python-checkins] skip test_test of test_mailcap on VxWorks (GH-23507) gpshead
- [Python-checkins] bpo-31904: add shell requirement for test_pipes (GH-23489) miss-islington
- [Python-checkins] bpo-31904: skip some tests related to fifo on VxWorks (GH-23473) miss-islington
- [Python-checkins] bpo-31904: remove libnet dependency from detect_socket() for VxWorks (GH-23394) miss-islington
- [Python-checkins] bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (#23537) mdickinson
- [Python-checkins] bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (GH-23537) (GH-23550) mdickinson
- [Python-checkins] bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (GH-23537) (GH-23551) mdickinson
- [Python-checkins] bpo-42392: Remove deprecated loop parameter from docs (GH-23552) asvetlov
- [Python-checkins] bpo-42406: Fix whichmodule() with multiprocessing (GH-23403) gpshead
- [Python-checkins] bpo-42450: Minor updates to the itertools recipes (GH-23555) rhettinger
- [Python-checkins] bpo-42450: Minor updates to the itertools recipes (GH-23555) (GH-23562) rhettinger
- [Python-checkins] [3.9] bpo-42474: test TracebackException comparison to non-equal instances (GH-23557) gvanrossum
- [Python-checkins] [3.8] bpo-42474: test TracebackException comparison to non-equal instances (GH-23558) gvanrossum
- [Python-checkins] bpo-42142: Try to fix timeouts in ttk tests (GH-23474) serhiy-storchaka
- [Python-checkins] bpo-42506: Fix unexpected output in test_format (GH-23564) corona10
- [Python-checkins] bpo-42451: Indicate that PyTuple_GetItem does not support negative indices (GH-23529) vstinner
- [Python-checkins] bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH-23534) rhettinger
- [Python-checkins] bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH-23534) (GH-23569) rhettinger
- [Python-checkins] bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570) terryjreedy
- [Python-checkins] bpo-42501: Revise the usage note for Enums with the choices (GH-23563) rhettinger
- [Python-checkins] bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532) pablogsal
- [Python-checkins] Refactor the grammar to match the language specification docs (GH-23574) pablogsal
- [Python-checkins] bpo-42501: Revise the usage note for Enums with the choices (GH-23563) (GH-23573) rhettinger
- [Python-checkins] bpo-28468: Add platform.freedesktop_os_release() (GH-23492) vstinner
- [Python-checkins] bpo-31904: Support signal module on VxWorks (GH-23391) vstinner
- [Python-checkins] bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570) (GH-23571) terryjreedy
- [Python-checkins] bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531) miss-islington
- [Python-checkins] bpo-38200: Add itertools.pairwise() (GH-23549) rhettinger
Last message date: Mon Nov 30 23:43:00 EST 2020
Archived on: Mon Nov 30 23:43:02 EST 2020
This archive was generated by Pipermail 0.09 (Mailman edition).
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4