This website requires JavaScript.
Explore
Help
Sign In
traverseda
/
cpython
Watch
1
Star
0
Fork
You've already forked cpython
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
f689f104aa
cpython
/
Objects
History
Serhiy Storchaka
ce16424b0b
Issue
#22079
: Py3k warning now is issued in PyType_Ready() instead of
...
raising TypeError when statically allocated type subclasses dynamically allocated type
2015-03-22 09:45:35 +02:00
..
stringlib
…
abstract.c
Issue
#23370
: Fix off-by-one error for non-contiguous buffers.
2015-02-01 16:10:35 +01:00
boolobject.c
…
bufferobject.c
avoid overflow with large buffer sizes and/or offsets (
closes
#21831
)
2014-06-23 20:12:27 -07:00
bytearrayobject.c
…
bytes_methods.c
…
capsule.c
…
cellobject.c
…
classobject.c
Fix typo in comment.
2014-08-01 23:51:51 -07:00
cobject.c
…
codeobject.c
…
complexobject.c
Issue
#22604
: Fix assertion error in debug mode when dividing a complex number by (nan+0j).
2014-10-10 23:49:32 +02:00
descrobject.c
…
dictnotes.txt
…
dictobject.c
…
enumobject.c
…
exceptions.c
…
fileobject.c
use Py_ssize_t for file offset and length computations in iteration (
closes
#22526
)
2014-09-30 21:17:15 -04:00
floatobject.c
fix potential refleak in PyFloat_AsDouble (
closes
#23590
)
2015-03-06 09:08:44 -05:00
frameobject.c
…
funcobject.c
…
genobject.c
…
intobject.c
remove strange casts
2014-11-23 12:58:54 -06:00
iterobject.c
…
listobject.c
fix merge_collapse to actually maintain the invariant it purports to (
closes
#23515
)
2015-02-25 10:12:26 -05:00
listsort.txt
…
lnotab_notes.txt
…
longobject.c
…
memoryobject.c
…
methodobject.c
…
moduleobject.c
…
object.c
Issue
#6477
: Revert fbb97f6eb3b3 as it broke test_xpickle.
2013-11-30 17:43:42 -08:00
obmalloc.c
…
rangeobject.c
…
setobject.c
Issue 8743: Improve interoperability between sets and the collections.Set abstract base class.
2014-05-25 22:13:41 -07:00
sliceobject.c
…
stringobject.c
fix overflow checking in PyString_Repr (
closes
#22519
)
2014-09-29 19:01:18 -04:00
structseq.c
…
tupleobject.c
Issue
#23629
: Fix the default __sizeof__ implementation for variable-sized objects.
2015-03-10 22:32:00 +01:00
typeobject.c
Issue
#22079
: Py3k warning now is issued in PyType_Ready() instead of
2015-03-22 09:45:35 +02:00
unicodectype.c
…
unicodeobject.c
Issue
#23055
: Fixed read-past-the-end error in PyUnicode_FromFormatV.
2015-01-31 01:15:29 +02:00
unicodetype_db.h
…
weakrefobject.c
…