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-45211: Move helpers from getpath.c to internal API. (gh-28550)
Eric Snow
2021-09-27
3
-17/+100
*
bpo-41299: Mark private thread_nt.h functions as static (GH-28553)
Victor Stinner
2021-09-24
1
-10/+10
*
bpo-41299: Fix EnterNonRecursiveMutex() (GH-28548)
Victor Stinner
2021-09-24
1
-3/+0
*
bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)
Victor Stinner
2021-09-24
1
-21/+7
*
bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)
Eric Snow
2021-09-24
1
-2/+2
*
bpo-20524: adds better error message for `.format()` (GH-28310)
Nikita Sobolev
2021-09-24
1
-7/+19
*
bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)
Victor Stinner
2021-09-22
1
-0/+11
*
bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)
Victor Stinner
2021-09-21
1
-0/+10
*
bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)
Pablo Galindo Salgado
2021-09-21
1
-1/+2
*
bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...
scoder
2021-09-21
1
-1/+9
*
bpo-1514420: Do not attempt to open files with names in <>s when formatting a...
Irit Katriel
2021-09-20
1
-0/+9
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-2/+2
*
bpo-45020: Freeze os, site, and codecs. (gh-28398)
Eric Snow
2021-09-17
1
-1/+10
*
bpo-45219: Factor dictkey indexing (GH-28389)
Mark Shannon
2021-09-17
1
-20/+19
*
bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)
Ken Jin
2021-09-17
2
-15/+9
*
bpo-45203: fix compiler warnings (GH-28357)
Ken Jin
2021-09-17
1
-0/+1
*
bpo-45020: Drop the frozen .h files from the repo. (gh-28392)
Eric Snow
2021-09-16
12
-14430/+0
*
bpo-45020: Revert "Drop the frozen .h files from the repo." (gh-28380)
Eric Snow
2021-09-16
11
-0/+14405
*
bpo-45020: Drop the frozen .h files from the repo. (gh-28375)
Eric Snow
2021-09-16
12
-14425/+0
*
bpo-45019: Clean up the frozen __hello__ module. (gh-28374)
Eric Snow
2021-09-15
4
-21/+32
*
bpo-45020: Freeze some of the modules imported during startup. (gh-28335)
Eric Snow
2021-09-15
10
-0/+6787
*
bpo-45203: Cleanup stats gathering code for LOAD_METHOD (GH-28352)
Mark Shannon
2021-09-15
1
-41/+39
*
bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350)
Victor Stinner
2021-09-15
1
-123/+188
*
bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...
Eric Snow
2021-09-14
4
-13/+174
*
bpo-45152: Add HAS_CONST macro and get_const_value() function and use… (#28...
Irit Katriel
2021-09-14
1
-7/+39
*
bpo-45019: Do some cleanup related to frozen modules. (gh-28319)
Eric Snow
2021-09-13
5
-2/+80
*
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...
Serhiy Storchaka
2021-09-12
1
-2/+4
*
bpo-44219: Release the GIL during isatty syscalls (GH-28250)
Vincent Michel
2021-09-09
1
-2/+14
*
bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...
Florin Spătar
2021-09-08
1
-1/+1
*
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)
Yury Selivanov
2021-09-07
1
-1/+1
*
bpo-41031: Match C and Python code formatting of unprintable exceptions and e...
Irit Katriel
2021-09-05
2
-2/+6
*
bpo-45094: Add Py_NO_INLINE macro (GH-28140)
Victor Stinner
2021-09-03
1
-1/+1
*
bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309)
Łukasz Langa
2021-09-03
1
-7/+6
*
bpo-45083: Include the exception class qualname when formatting an exception ...
Irit Katriel
2021-09-03
2
-35/+35
*
bpo-45056: Remove trailing unused constants from co_consts (GH-28109)
Inada Naoki
2021-09-02
4
-6318/+6348
*
bpo-45085: Remove the binhex module (GH-28117)
Victor Stinner
2021-09-02
1
-1/+0
*
bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...
Irit Katriel
2021-08-31
1
-2/+4
*
bpo-37596: Clean up the set/frozenset marshalling code (GH-28068)
Brandt Bucher
2021-08-31
1
-8/+11
*
bpo-45061: Enhance faulthandler traceback wit no Python frame (GH-28090)
Victor Stinner
2021-08-31
1
-1/+1
*
bpo-45019: Add a tool to generate list of modules to include for frozen modul...
Eric Snow
2021-08-30
5
-29/+57
*
bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)
Dong-hee Na
2021-08-30
1
-6/+17
*
Refine specialization stats (GH-27992)
Mark Shannon
2021-08-27
1
-17/+89
*
bpo-44945: Specialize BINARY_ADD (GH-27967)
Mark Shannon
2021-08-27
3
-46/+195
*
bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)
Dong-hee Na
2021-08-25
1
-0/+4
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
3
-66/+62
*
Format the Python-tokenize module and fix exit path (GH-27935)
Pablo Galindo Salgado
2021-08-25
1
-47/+46
*
bpo-37596: Make `set` and `frozenset` marshalling deterministic (GH-27926)
Brandt Bucher
2021-08-25
1
-0/+32
*
Add tests for the C tokenizer and expose it as a private module (GH-27924)
Pablo Galindo Salgado
2021-08-24
3
-0/+237
*
bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)
Dong-hee Na
2021-08-17
2
-0/+29
*
bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)
Ken Jin
2021-08-17
3
-37/+319
[prev]
[next]