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
/
Objects
/
codeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-30789: Use a single memory block for co_extra. (#2555)
Serhiy Storchaka
2017-07-04
1
-39/+15
*
bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455)
Victor Stinner
2017-06-28
1
-1/+2
*
bpo-30604: clean up co_extra support (#2144)
Dino Viehland
2017-06-21
1
-12/+18
*
bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168)
Dong-hee Na
2017-04-20
1
-2/+6
*
bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#376)
Brian Coleman
2017-03-02
1
-10/+14
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
|
\
|
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
|
|
\
|
|
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
*
|
|
Issue #18896: Python function can now have more than 255 parameters.
Serhiy Storchaka
2016-12-16
1
-7/+13
*
|
|
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-3/+2
|
/
/
*
|
Merge 3.5 (issue #27942)
Yury Selivanov
2016-11-09
1
-0/+2
|
\
\
|
|
/
|
*
ssue #27942: Fix memory leak in codeobject.c
Yury Selivanov
2016-11-09
1
-0/+2
*
|
Issue #28350: String constants with null character no longer interned.
Serhiy Storchaka
2016-10-04
1
-8/+8
|
\
\
|
|
/
|
*
Issue #28350: String constants with null character no longer interned.
Serhiy Storchaka
2016-10-04
1
-8/+8
*
|
Issue #27942: String constants now interned recursively in tuples and frozens...
Serhiy Storchaka
2016-09-30
1
-7/+45
|
\
\
|
|
/
|
*
Issue #27942: String constants now interned recursively in tuples and frozens...
Serhiy Storchaka
2016-09-30
1
-7/+45
|
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
|
Make PyCodeObject.co_extra even more private to force users through the prope...
Brett Cannon
2016-09-07
1
-23/+31
*
|
Change error return value to be more consistent with the rest of Python
Brett Cannon
2016-09-07
1
-5/+5
*
|
use a the bool type for a boolean variable
Benjamin Peterson
2016-09-07
1
-2/+4
*
|
Add the co_extra field and accompanying APIs to code objects.
Brett Cannon
2016-09-07
1
-0/+91
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-1/+1
*
|
Issue #15984: Merge PyUnicode doc from 3.5
Martin Panter
2016-04-15
1
-1/+1
|
\
\
|
|
/
|
*
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
Martin Panter
2016-04-15
1
-1/+1
|
*
code_richcompare() now uses the constants types
Victor Stinner
2016-01-22
1
-1/+138
*
|
code_richcompare() now uses the constants types
Victor Stinner
2016-01-22
1
-1/+138
*
|
co_lnotab supports negative line number delta
Victor Stinner
2016-01-20
1
-4/+7
|
/
*
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1/+1
*
Issue #18874: PyCode_New() now ensures that the filename is a ready Unicode
Victor Stinner
2013-10-10
1
-0/+5
*
Issue #15456: Fix code __sizeof__ after #12399 change.
Martin v. Löwis
2012-07-26
1
-1/+17
*
Make PyUnicode_Copy() private => _PyUnicode_Copy()
Victor Stinner
2011-12-12
1
-1/+1
*
Reuse PyUnicode_Copy() in validate_and_copy_tuple()
Victor Stinner
2011-10-11
1
-3/+1
*
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-6/+9
*
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-11
1
-2/+1
*
map cells to arg slots at code creation time (closes #12399)
Benjamin Peterson
2011-06-26
1
-29/+65
*
Remove arbitrary string length limits
Victor Stinner
2011-01-05
1
-2/+2
*
Issue #9566: use Py_ssize_t instead of int
Victor Stinner
2011-01-04
1
-2/+3
*
make hashes always the size of pointers; introduce Py_hash_t #9778
Benjamin Peterson
2010-10-17
1
-2/+2
*
Remove unused label.
Georg Brandl
2010-10-15
1
-4/+0
*
Use locale encoding if Py_FileSystemDefaultEncoding is not set
Victor Stinner
2010-10-15
1
-13/+0
*
Issue #9630: Redecode filenames when setting the filesystem encoding
Victor Stinner
2010-09-29
1
-0/+17
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-453/+453
*
code_repr(): use %U to format the filename
Victor Stinner
2010-05-07
1
-8/+12
*
Merged revisions 79060 via svnmerge from
Collin Winter
2010-03-18
1
-1/+4
*
Merged revisions 72487-72488,72879 via svnmerge from
Alexandre Vassalotti
2009-07-21
1
-133/+56
*
#6502: add missing comma in docstring.
Georg Brandl
2009-07-18
1
-1/+1
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-1/+1
*
Rename PyUnicode_AsString -> _PyUnicode_AsString and
Marc-André Lemburg
2008-08-07
1
-1/+1
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-5/+5
*
#1939: update code object docstring.
Georg Brandl
2008-01-26
1
-2/+3
[next]