GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-43152: Update assert statement to remove unused warning (GH-24473)
Dong-hee Na
2021-02-14
1
-2
/
+1
*
bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)
Inada Naoki
2021-02-10
3
-3847
/
+3835
*
bpo-42882: Fix MSVC warnings in pystate.c (GH-24440)
Ken Jin
2021-02-04
1
-1
/
+1
*
Only eliminate jumps to successor block if jump is unconditional. (GH-24417)
Mark Shannon
2021-02-02
1
-17
/
+4
*
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
2
-126
/
+204
*
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24...
Pablo Galindo
2021-01-30
1
-3
/
+2
*
bpo-42927: Inline cache for attributes defined with '__slots__' (#24216)
Guido van Rossum
2021-01-29
1
-64
/
+116
*
bpo-38631: Replace compiler fatal errors with exceptions (GH-24369)
Victor Stinner
2021-01-30
1
-34
/
+52
*
Fix a reference leak in the compiler for compiler_lambda() (GH-24382)
Pablo Galindo
2021-01-29
1
-1
/
+3
*
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner
2021-01-29
1
-7
/
+11
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
1
-62
/
+68
*
bpo-42955: Remove sub-packages from sys.stdlib_module_names (GH-24353)
Victor Stinner
2021-01-28
1
-12
/
+0
*
bpo-33387: update documentation for exception handling opcode changes (GH-24334)
Irit Katriel
2021-01-26
1
-2
/
+0
*
bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)
Victor Stinner
2021-01-25
3
-18
/
+18
*
bpo-42955: Add sys.modules_names (GH-24238)
Victor Stinner
2021-01-25
3
-190
/
+226
*
bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)
Serhiy Storchaka
2021-01-25
1
-1
/
+1
*
bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-24172)
cptpcrd
2021-01-20
1
-0
/
+7
*
bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)
Victor Stinner
2021-01-19
2
-13
/
+43
*
bpo-42955: Add Python/module_names.h (GH-24258)
Victor Stinner
2021-01-19
1
-0
/
+336
*
bpo-42923: Dump extension modules on fatal error (GH-24207)
Victor Stinner
2021-01-18
1
-0
/
+41
*
bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)
Victor Stinner
2021-01-18
2
-43
/
+44
*
Mark instructions at end of class scope as artificial. (GH-24222)
Mark Shannon
2021-01-15
1
-0
/
+2
*
Eliminate NOPs in extended blocks. (GH-24209)
Mark Shannon
2021-01-13
1
-5
/
+13
*
bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)
Mark Shannon
2021-01-13
4
-4358
/
+4432
*
bpo-41994: Fix refcount issues in Python/import.c (GH-22632)
Serhiy Storchaka
2021-01-12
1
-56
/
+50
*
bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193)
Victor Stinner
2021-01-12
1
-1
/
+4
*
Update frame.f_lineno before any call to the (C) tracing function. (GH-24150)
Mark Shannon
2021-01-07
1
-33
/
+54
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
3
-1144
/
+1151
*
bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091)
Mark Shannon
2021-01-04
4
-2185
/
+2202
*
Delete the now unused c_do_not_emit_bytecode field. (#24094)
Mark Shannon
2021-01-04
1
-33
/
+0
*
Bring Python into the new year. (GH-24036)
Dong-hee Na
2021-01-02
1
-1
/
+1
*
bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953)
Victor Stinner
2020-12-26
1
-3
/
+1
*
bpo-40521: Per-interpreter interned strings (GH-20085)
Victor Stinner
2020-12-26
1
-0
/
+2
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
2
-1
/
+3
*
bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)
Victor Stinner
2020-12-26
1
-11
/
+19
*
bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)
Mark Shannon
2020-12-23
4
-4155
/
+4191
*
Fix typos in sysmodule (GH-23883)
Joannah Nanjekye
2020-12-22
1
-2
/
+2
*
bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)
Mark Shannon
2020-12-21
4
-4995
/
+5007
*
bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)
Irit Katriel
2020-12-18
1
-710
/
+719
*
bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...
Mark Shannon
2020-12-17
6
-214
/
+218
*
bpo-26564: fix obsolete comment in traceback.c (GH-23819)
Irit Katriel
2020-12-17
1
-1
/
+2
*
bpo-42645: Make sure that return/break/continue are only traced once when exi...
Mark Shannon
2020-12-16
2
-1664
/
+1673
*
bpo-42615: Delete redundant jump instructions that only bypass empty blocks (...
Om G
2020-12-16
2
-101
/
+143
*
bpo-42639: Move atexit state to PyInterpreterState (GH-23763)
Victor Stinner
2020-12-15
2
-12
/
+9
*
bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...
Mark Shannon
2020-12-15
4
-3457
/
+3402
*
bpo-42639: atexit now logs callbacks exceptions (GH-23771)
Victor Stinner
2020-12-14
1
-6
/
+3
*
bpo-42639: Cleanup atexitmodule.c (GH-23770)
Victor Stinner
2020-12-14
1
-14
/
+2
*
bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...
Mark Shannon
2020-12-14
3
-3767
/
+3769
*
Don't generate spurious line number in try-except-finally. (#23760)
Mark Shannon
2020-12-14
3
-1732
/
+1734
*
bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)
pxinwr
2020-12-09
1
-0
/
+4
[next]