This website requires JavaScript.
Explore
Help
Sign In
mirror
/
cpython
Watch
1
Star
0
Fork
0
You've already forked cpython
mirror of
https://github.com/python/cpython.git
synced
2026-01-29 06:06:01 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
cpython
/
Objects
History
Raymond Hettinger
f1aa8aed4a
Micro-optimize list index range checks (GH-9784)
2018-10-10 20:37:28 -07:00
..
clinic
Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756)
2018-10-08 16:14:47 +05:30
stringlib
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
2018-08-29 22:21:32 +02:00
abstract.c
closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)
2018-08-25 16:52:27 -07:00
accu.c
Replace KB unit with KiB (
#4293
)
2017-11-08 14:44:44 -08:00
boolobject.c
bpo-30592: Fixed error messages for some builtins. (
#1996
)
2017-06-08 14:41:19 +03:00
bytearrayobject.c
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
2018-07-25 01:37:05 +02:00
bytes_methods.c
closes bpo-34599: Improve performance of _Py_bytes_capitalize(). (GH-9083)
2018-09-06 21:54:49 -07:00
bytesobject.c
bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)
2018-10-03 09:01:30 +03:00
call.c
bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)
2018-07-24 10:55:47 +03:00
capsule.c
…
cellobject.c
bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793)
2017-11-02 20:32:54 +10:00
classobject.c
bpo-1617161: Make the hash and equality of methods not depending on the value of self. (GH-7848)
2018-07-31 09:18:24 +03:00
codeobject.c
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
2018-08-03 15:33:52 +02:00
complexobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
descrobject.c
bpo-30156: Remove property_descr_get() optimization (GH-9541)
2018-10-01 03:03:22 -07:00
dict-common.h
bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)
2018-04-19 22:41:19 -07:00
dictnotes.txt
…
dictobject.c
bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)
2018-09-25 20:59:00 -07:00
enumobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
exceptions.c
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
2018-06-15 11:09:43 +03:00
fileobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
floatobject.c
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
2018-03-26 12:41:30 +03:00
frameobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
funcobject.c
bpo-33418: Add tp_clear for function object (GH-8058)
2018-07-04 11:15:50 +09:00
genobject.c
closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_origin() (GH-8911)
2018-08-25 00:15:23 -07:00
iterobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
listobject.c
Micro-optimize list index range checks (GH-9784)
2018-10-10 20:37:28 -07:00
listsort.txt
bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (
#582
)
2018-01-28 19:03:23 -08:00
lnotab_notes.txt
bpo-28810: Update lnotab_notes.txt (
#665
)
2017-03-14 21:42:09 +02:00
longobject.c
bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)
2018-10-06 00:02:23 +03:00
memoryobject.c
bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)
2018-04-14 19:49:21 +02:00
methodobject.c
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
2018-09-12 12:06:42 -07:00
moduleobject.c
Fix misleading mentions of tp_size in comments (GH-9093)
2018-09-10 09:46:08 -07:00
namespaceobject.c
Fix misleading mentions of tp_size in comments (GH-9093)
2018-09-10 09:46:08 -07:00
object.c
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
2018-10-06 09:44:25 +03:00
obmalloc.c
remove vestigal locking from obmalloc (GH-5805)
2018-02-24 11:59:10 -08:00
odictobject.c
fix two typos in Objects/odictobject.c comments (GH-8040)
2018-07-06 13:54:26 +03:00
rangeobject.c
closes bpo-34468: Objects/rangeobject.c: Fix an always-false condition in range_repr() (GH-8880)
2018-08-23 21:39:45 -07:00
README
…
setobject.c
bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059)
2018-09-11 16:18:01 -07:00
sliceobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
structseq.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
tupleobject.c
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
2018-08-03 15:33:52 +02:00
typeobject.c
bpo-25750: fix refcounts in type_getattro() (GH-6118)
2018-09-07 09:37:00 +02:00
typeslots.inc
…
typeslots.py
…
unicodectype.c
…
unicodeobject.c
Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756)
2018-10-08 16:14:47 +05:30
unicodetype_db.h
update to Unicode 11.0.0 (closes bpo-33778) (GH-7439)
2018-06-06 20:14:28 -07:00
weakrefobject.c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
2018-04-29 21:59:33 +03:00
README
Source files for various builtin objects