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-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox...
Miss Islington (bot)
2022-04-08
1
-4/+5
*
[3.10] bpo-46940: Don't override existing AttributeError suggestion informati...
Pablo Galindo Salgado
2022-03-07
1
-3/+6
*
bpo-46831: Update __build_class__ comment (GH-31522)
Miss Islington (bot)
2022-03-03
1
-3/+2
*
[3.10] bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326) (GH-...
Mark Shannon
2022-02-16
4
-12/+43
*
bpo-45773: Remove invalid peephole optimizations (GH-31066)
Miss Islington (bot)
2022-02-03
1
-2/+0
*
[3.10] bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_cac...
Petr Viktorin
2022-01-27
1
-898/+904
*
bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30553)
Yury Selivanov
2022-01-12
1
-11/+5
*
bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (GH-30546)
Miss Islington (bot)
2022-01-11
1
-7/+0
*
bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)
Miss Islington (bot)
2022-01-07
1
-8/+5
*
[3.10] Update copyright year to 2022. (GH-30335) (GH-30336)
Miss Islington (bot)
2022-01-02
1
-1/+1
*
bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059) (GH-3...
Miss Islington (bot)
2021-12-12
1
-60/+83
*
[3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-2998...
Mark Shannon
2021-12-08
1
-18/+2
*
bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...
Irit Katriel
2021-11-29
1
-1/+1
*
[3.10] bpo-45848: Allow the parser to get error lines from encoded files (GH-...
Łukasz Langa
2021-11-20
1
-4/+14
*
bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...
Miss Islington (bot)
2021-11-18
1
-1/+1
*
[3.10] bpo-45826: Fix a crash in suggestions.c by checking for `traceback is ...
Łukasz Langa
2021-11-18
1
-3/+11
*
bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) ...
Miss Islington (bot)
2021-11-17
1
-0/+22
*
bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...
Miss Islington (bot)
2021-11-17
1
-1/+4
*
[3.10] bpo-45773: Stop "optimizing" certain jump patterns (GH-29526)
Brandt Bucher
2021-11-11
4
-81/+52
*
[3.10] bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358) (GH-29361)
Miss Islington (bot)
2021-11-02
1
-0/+1
*
Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)
Miss Islington (bot)
2021-10-12
1
-1/+1
*
Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)
Miss Islington (bot)
2021-10-11
1
-0/+3
*
Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...
Miss Islington (bot)
2021-10-11
1
-1/+1
*
[3.10] Fix typos in the Python directory (GH-28767) (GH-28799)
Christian Clauss
2021-10-07
6
-8/+8
*
bpo-44050: Extension modules can share state when they don't support sub-inte...
Miss Islington (bot)
2021-10-05
1
-1/+3
*
[3.10] bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720). (GH-28721)
Serhiy Storchaka
2021-10-04
1
-1/+1
*
[3.10] bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size ...
Serhiy Storchaka
2021-10-04
2
-5/+5
*
[3.10] Remove trailing spaces (GH-28709)
Serhiy Storchaka
2021-10-03
1
-2/+2
*
bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28671)
Victor Stinner
2021-10-01
1
-12/+41
*
Move predispatch logic from DISPATCH macro to juts before switch. Reduces siz...
Mark Shannon
2021-09-29
1
-7/+15
*
[3.10] bpo-45307: Restore private C API function _PyImport_FindExtensionObjec...
Serhiy Storchaka
2021-09-28
1
-0/+17
*
[3.10] bpo-45183: don't raise an exception when calling zipimport.zipimporter...
Brett Cannon
2021-09-18
1
-1/+1
*
[3.10] bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH...
Łukasz Langa
2021-09-15
1
-7/+6
*
bpo-44219: Release the GIL during isatty syscalls (GH-28250) (GH-28255)
Miss Islington (bot)
2021-09-09
1
-2/+14
*
[3.10] bpo-45083: Include the exception class qualname when formatting an exc...
Miss Islington (bot)
2021-09-08
2
-36/+38
*
[3.10] bpo-45056: Remove trailing unused constants from co_consts (GH-28109) ...
Łukasz Langa
2021-09-08
4
-4611/+4641
*
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-2...
Miss Islington (bot)
2021-09-07
1
-1/+1
*
bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...
Miss Islington (bot)
2021-08-31
1
-2/+4
*
bpo-45061: Enhance faulthandler traceback wit no Python frame (GH-28090)
Miss Islington (bot)
2021-08-31
1
-1/+1
*
bpo-44449: faulthandler don't modify frame refcnt (GH-27850)
Victor Stinner
2021-08-30
1
-5/+5
*
bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) (GH-27957)
Dong-hee Na
2021-08-26
1
-0/+4
*
bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...
Miss Islington (bot)
2021-08-10
1
-1/+15
*
Remove unused variable. (GH-27677) (#27680)
Mark Shannon
2021-08-09
1
-3/+0
*
bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...
Mark Shannon
2021-08-09
4
-3803/+3814
*
bpo-44856: Possible reference leak in error paths of update_bases() and __bui...
Miss Islington (bot)
2021-08-07
1
-22/+13
*
bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)
Miss Islington (bot)
2021-08-06
1
-3/+4
*
bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)
Miss Islington (bot)
2021-08-06
2
-0/+24
*
bpo-39091: Fix segfault when Exception constructor returns non-exception for ...
Miss Islington (bot)
2021-08-03
1
-4/+16
*
bpo-32280: Store _PyRuntime in a named section (GH-4802) (#27448)
Miss Islington (bot)
2021-07-29
1
-2/+28
*
[3.10] bpo-43897: Reject "_" captures and top-level MatchStar in the AST vali...
Miss Islington (bot)
2021-07-29
1
-20/+28
[next]