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
/
Lib
/
test
/
test_code.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-106581: Project through calls (#108067)
Guido van Rossum
2023-08-17
1
-1/+1
*
GH-103805: Lib test f541 linting issue fix (#103812)
Rodolfo M. Pereira
2023-04-24
1
-1/+1
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
1
-5/+5
*
gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)
Nikita Sobolev
2023-04-03
1
-0/+7
*
gh-101101: Unstable C API tier (PEP 689) (GH-101102)
Petr Viktorin
2023-02-28
1
-3/+3
*
gh-101632: Add the new RETURN_CONST opcode (#101633)
penguin_wwy
2023-02-07
1
-0/+1
*
GH-100117: Make `co_lines` more efficient (GH-100447)
Brandt Bucher
2023-01-10
1
-1/+2
*
gh-94155: Reduce hash collisions for code objects (#100183)
Dennis Sweeney
2022-12-23
1
-0/+26
*
gh-100077: make test_code.test_invalid_bytecode more robust and maintainable ...
Irit Katriel
2022-12-07
1
-8/+12
*
GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...
Brandt Bucher
2022-10-05
1
-0/+33
*
gh-96711: Enhance SystemError message upon Invalid opcode (#96712)
serge-sans-paille
2022-09-20
1
-0/+11
*
GH-95150: Use position and exception tables for code hashing and equality (GH...
Brandt Bucher
2022-08-01
1
-0/+21
*
Revert "gh-94816: Improve coverage of decode_linetable (GH-94853)" (GH-94982)
Michael Droettboom
2022-07-18
1
-23/+0
*
gh-94816: Improve coverage of decode_linetable (GH-94853)
Michael Droettboom
2022-07-14
1
-0/+23
*
gh-94485: Set line number of module's RESUME instruction to 0, as specified b...
Irit Katriel
2022-07-05
1
-1/+0
*
gh-84461: Fix ctypes and test_ctypes on Emscripten (#94142)
Christian Heimes
2022-06-24
1
-0/+2
*
GH-93662: Make sure that column offsets are correct in multi-line method call...
Mark Shannon
2022-06-14
1
-1/+30
*
GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...
Mark Shannon
2022-04-21
1
-0/+3
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
1
-39/+130
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-1/+1
*
bpo-45923: Handle call events in bytecode (GH-30364)
Mark Shannon
2022-01-06
1
-4/+11
*
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
Irit Katriel
2022-01-04
1
-1/+3
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-1/+3
*
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Serhiy Storchaka
2021-09-20
1
-9/+7
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
1
-1/+3
*
bpo-44980: fix test_constructor to return None value (GH-27898)
andrei kulakov
2021-08-23
1
-1/+1
*
Fix a SystemError in code.replace() (#27771)
Guido van Rossum
2021-08-16
1
-0/+9
*
Remove __cleanenv from PEP-657 tests (GH-27060)
Ammar Askar
2021-07-07
1
-2/+2
*
bpo-43950: Add option to opt-out of PEP-657 (GH-27023)
Ammar Askar
2021-07-07
1
-1/+29
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
1
-1/+9
*
bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)
Batuhan Taskaya
2021-07-04
1
-1/+1
*
bpo-43950: Add code.co_positions (PEP 657) (GH-26955)
Pablo Galindo
2021-07-02
1
-0/+83
*
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
Guido van Rossum
2021-06-23
1
-9/+5
*
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow
2021-05-26
1
-2/+44
*
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon
2021-05-07
1
-0/+1
*
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
Mark Shannon
2021-04-29
1
-0/+6
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-1/+1
*
bpo-40443: Remove unused imports in tests (GH-19804)
Victor Stinner
2020-04-30
1
-1/+0
*
Cleanup exit code for interpreter. (GH-17756)
Mark Shannon
2020-01-13
1
-36/+0
*
bpo-38839: Fix some unused functions in tests (GH-17189)
Adam Johnson
2019-11-19
1
-1/+1
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-1/+1
*
bpo-37032: Add CodeType.replace() method (GH-13542)
Victor Stinner
2019-05-24
1
-6/+60
*
bpo-36851: Clean the frame stack if the execution ends with a return and the ...
Pablo Galindo
2019-05-09
1
-0/+38
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-2/+26
*
bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)
Nick Coghlan
2017-12-03
1
-0/+45
*
bpo-30604: Skip CoExtra tests if ctypes is missing (#2356)
Victor Stinner
2017-06-23
1
-3/+6
*
bpo-30604: clean up co_extra support (#2144)
Dino Viehland
2017-06-21
1
-3/+100
*
Issue #28350: String constants with null character no longer interned.
Serhiy Storchaka
2016-10-04
1
-3/+17
*
Issue #27942: String constants now interned recursively in tuples and frozens...
Serhiy Storchaka
2016-09-30
1
-1/+39
*
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka
2014-02-07
1
-2/+3
[next]