index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)
Filipe Laíns
2021-07-24
1
-1732/+1749
*
bpo-43950: check against the raw string, not the pyobject (GH-27337)
Batuhan Taskaya
2021-07-24
1
-1/+1
*
Revert "bpo-44717: improve AttributeError on circular imports of submodules (...
Pablo Galindo Salgado
2021-07-24
1
-1749/+1732
*
bpo-43950: ensure source_line is present when specialising the traceback (GH-...
Batuhan Taskaya
2021-07-24
1
-2/+2
*
bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)
Filipe Laíns
2021-07-24
1
-1732/+1749
*
bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)
Dong-hee Na
2021-07-23
1
-40/+8
*
bpo-44353: Implement typing.NewType __call__ method in C (#27262)
Yurii Karabas
2021-07-22
1
-0/+1
*
bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)
Batuhan Taskaya
2021-07-20
1
-0/+10
*
bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)
Mark Shannon
2021-07-19
1
-1/+6
*
bpo-20291: Fix MSVC warnings in getargs.c (GH-27211)
Ken Jin
2021-07-17
1
-1/+2
*
bpo-44655: Include the name of the type in unset __slots__ attribute errors (...
Pablo Galindo Salgado
2021-07-16
1
-4/+9
*
bpo-44655: Don't include suggestions for attributes that are the same as the ...
Pablo Galindo Salgado
2021-07-16
1
-0/+3
*
Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...
Pablo Galindo Salgado
2021-07-16
1
-6/+1
*
bpo-20201: variadic arguments support for AC (GH-18609)
Batuhan Taskaya
2021-07-16
3
-39/+277
*
bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)
Mark Shannon
2021-07-16
1
-1/+6
*
bpo-43950: make BinOp specializations more reliable (GH-27126)
Batuhan Taskaya
2021-07-15
1
-1/+1
*
bpo-44626: Merge basic blocks earlier to enable better handling of exit block...
Mark Shannon
2021-07-15
3
-4317/+4361
*
Remove sys._deactivate_opcache() now that is not needed (GH-27154)
Pablo Galindo Salgado
2021-07-15
3
-49/+1
*
bpo-44622: Set line number of END_ASYNC_FOR to match that of iterator. (GH-27...
Mark Shannon
2021-07-15
1
-1/+3
*
bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)
Irit Katriel
2021-07-15
3
-12/+174
*
bpo-44589: raise a SyntaxError when mapping patterns have duplicate literal k...
Jack DeVries
2021-07-15
1
-4/+41
*
bpo-44616: Mark all clean up instructions at end of named exception block as ...
Mark Shannon
2021-07-14
2
-5/+4
*
bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...
Serhiy Storchaka
2021-07-13
2
-7/+16
*
bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)
Batuhan Taskaya
2021-07-12
1
-41/+225
*
bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)
Mark Shannon
2021-07-08
1
-4/+2
*
bpo-44581: Don't execute quickened instructions if tracing is on (GH-27064)
Mark Shannon
2021-07-08
1
-1/+9
*
bpo-43895: Remove an unnecessary cache of shared object handles (GH-25487)
Ian Henriksen
2021-07-07
1
-22/+0
*
bpo-43950: Add option to opt-out of PEP-657 (GH-27023)
Ammar Askar
2021-07-07
1
-1/+20
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
7
-7302/+7261
*
bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)
Ammar Askar
2021-07-04
2
-7/+68
*
bpo-43950: optimize column table assembling with pre-sizing object (GH-26997)
Batuhan Taskaya
2021-07-02
1
-6/+13
*
bpo-43950: Add code.co_positions (PEP 657) (GH-26955)
Pablo Galindo
2021-07-02
6
-5138/+7118
*
bpo-44313: bump up magic (#26983)
Batuhan Taskaya
2021-07-01
1
-1/+1
*
Add file describing how to add or modify specialized families of instructions...
Mark Shannon
2021-07-01
2
-0/+135
*
bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...
Batuhan Taskaya
2021-06-30
4
-213/+236
*
Fix compiler errors for unused variables in marshal.c (GH-26977)
Pablo Galindo
2021-06-30
1
-2/+0
*
bpo-41180: Replace marshal code.__new__ audit event with marshal.load[s] and ...
Steve Dower
2021-06-30
1
-10/+20
*
bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...
Serhiy Storchaka
2021-06-29
1
-18/+30
*
Make sure that line number is set correctly for call to __exit__ when handlin...
Mark Shannon
2021-06-24
4
-4498/+4498
*
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
Guido van Rossum
2021-06-23
4
-228/+228
*
bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874)
Victor Stinner
2021-06-23
1
-0/+3
*
bpo-44486: Make sure that modules always have a dictionary. (GH-26847)
Mark Shannon
2021-06-23
1
-0/+1
*
bpo-43918: document signature and default argument of `anext` builtin (#25551)
Erik Welch
2021-06-22
2
-4/+10
*
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum
2021-06-21
6
-5335/+5398
*
bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)
Pablo Galindo
2021-06-21
1
-0/+3
*
bpo-44466: Faulthandler now detects the GC (GH-26823)
Victor Stinner
2021-06-21
1
-0/+4
*
bpo-44337: Improve LOAD_ATTR specialization (GH-26759)
Mark Shannon
2021-06-21
2
-72/+178
*
bpo-44297: Fix missing line number in generator expressions (GH-26801)
Mark Shannon
2021-06-21
2
-952/+953
*
bpo-44032: Move pointer to code object from frame-object to frame specials ar...
Mark Shannon
2021-06-18
1
-11/+12
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
4
-4011/+4096
[next]