summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...Serhiy Storchaka2021-07-131-0/+72
* bpo-44572: On Windows, disconnect STDIN in platform._syscmd_ver() to prevent ...Konstantin-Glukhov2021-07-131-0/+1
* bpo-38741: Definition of multiple ']' in header configparser (GH-17129)jsnklln2021-07-132-1/+8
* bpo-35113: clean up duplicate import and comment (#27073)andrei kulakov2021-07-131-4/+0
* Remove unnecessary pass statements (GH-27103)Elisha Hollander2021-07-133-3/+0
* bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)Batuhan Taskaya2021-07-122-3/+139
* bpo-26329: update os.path.normpath documentation (GH-20138)Furkan Onder2021-07-121-0/+1
* bpo-44207: Add an internal version number to function objects. (GH-27078)Mark Shannon2021-07-121-1/+1
* bpo-29753: revert 0d7ad9f (GH-19850) (GH-27085)Filipe Laíns2021-07-111-63/+0
* bpo-43219: shutil.copyfile, raise a less confusing exception instead of IsADi...andrei kulakov2021-07-102-21/+38
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)Pablo Galindo Salgado2021-07-101-2/+2
* bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)Mark Shannon2021-07-081-0/+35
* bpo-44446: support lineno being None in traceback.FrameSummary (GH-26781)Filipe Laíns2021-07-082-0/+6
* bpo-44582: Accelerate mimetypes.init on Windows with a native accelerator (GH...Steve Dower2021-07-082-6/+42
* bpo-43908: Immutable types inherit vectorcall (GH-27001)Erlend Egeberg Aasland2021-07-081-2/+2
* bpo-41137: Use utf-8 encoding while reading .pdbrc files (GH-21263)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2021-07-082-2/+36
* Remove __cleanenv from PEP-657 tests (GH-27060)Ammar Askar2021-07-073-6/+5
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-0711-28/+177
* bpo-44558: Match countOf `is`/`==` treatment to c (GH-27007)Rupert Tombs2021-07-072-2/+7
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-074-55/+58
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-061-0/+10
* bpo-38291: Fix a spurious warning when using help(object) (#27039)Sebastian Rittau2021-07-061-1/+1
* bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012)Dong-hee Na2021-07-052-1/+4
* bpo-44534: fix wording and docstring sync in unittest.Mock GH27000Jack DeVries2021-07-051-0/+5
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-046-37/+244
* bpo-43950: include position in dis.Instruction (GH-27015)Batuhan Taskaya2021-07-042-197/+287
* bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)Batuhan Taskaya2021-07-042-11/+11
* bpo-34266: [pdb] handle ValueError from shlex.split() (GH-26656)Irit Katriel2021-07-032-1/+20
* bpo-44129: Add descriptive global variables for general purpose bit flags (GH...Daniel Hillier2021-07-032-13/+39
* bpo-44553 : Implement GC methods for types.Union (GH-26993)Ken Jin2021-07-031-1/+19
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-024-4/+202
* bpo-30256: Add manager_owned keyword arg to AutoProxy (GH-16341)finefoot2021-07-022-2/+12
* bpo-44313: bump up magic (#26983)Batuhan Taskaya2021-07-011-1/+1
* bpo-43234: Prohibit non-ThreadPoolExecutor in loop.set_default_executor (GH-2...Illia Volochii2021-07-012-9/+5
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-016-700/+68
* bpo-43425: Update _osx_support not to use distutils.log (GH-26968)Dong-hee Na2021-07-011-4/+3
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-302-0/+37
* bpo-41180: Replace marshal code.__new__ audit event with marshal.load[s] and ...Steve Dower2021-06-302-0/+32
* bpo-43232: Remove previously deprecated methods on TransportSocket (GH-24538)Illia Volochii2021-06-301-108/+0
* bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...Pablo Galindo2021-06-291-4/+10
* bpo-44471: Change error type for bad objects in ExitStack.enter_context() (GH...Serhiy Storchaka2021-06-293-8/+72
* bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...Serhiy Storchaka2021-06-293-8/+8
* bpo-44464: Remove special exclusion for flake8 in the deprecation warnings. (...Jason R. Coombs2021-06-271-9/+1
* Clarify the order of a stacked `abstractmethod` (GH-26892)Ram Rachum2021-06-271-3/+24
* bpo-44110: Improve string's __getitem__ error message (GH-26042)Miguel Brito2021-06-272-2/+10
* bpo-44468: Never skip base classes in `typing.get_type_hints()`, even with in...will-ca2021-06-262-11/+19
* Update vendored pip to 21.1.3 (GH-26912)Stéphane Bidoul2021-06-262-1/+1
* bpo-43977: Properly update the tp_flags of existing subclasses when their par...Brandt Bucher2021-06-251-23/+87
* bpo-44498: suppress DeprecationWarnings for asynchat, asyncore and smtpd in t...Irit Katriel2021-06-249-16/+51
* bpo-44498: Issue a deprecation warning on asynchat, asyncore and smtpd import...Barry Warsaw2021-06-244-4/+30