Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
65f315e1ef89448cbafcdaadc510173b8328ce81
/
Objects
43de36d
Issue #26766: Remove redundant bytearray_format() from bytearrayobject.c
by Berker Peksag
· 9 years ago
e914d41
Issue #26766: Fix _PyBytesWriter_Finish()
by Victor Stinner
· 9 years ago
c9a59e6
Issue #26764: Fixed SystemError in bytes.__rmod__.
by Serhiy Storchaka
· 9 years ago
cda8094
Issue #15984: Merge PyUnicode doc from 3.5
by Martin Panter
· 9 years ago
6245cb3
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
by Martin Panter
· 9 years ago
21a663e
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
by Serhiy Storchaka
· 9 years ago
131b8f8
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
by Serhiy Storchaka
· 9 years ago
3d74976
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
by Serhiy Storchaka
· 9 years ago
59865e7
Issue #26200: Restored more safe usages of Py_SETREF.
by Serhiy Storchaka
· 9 years ago
f01e408
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
by Serhiy Storchaka
· 9 years ago
57a01d3
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
by Serhiy Storchaka
· 9 years ago
03f17f8
Issue #17339: Improved TypeError message in bytes constructor.
by Serhiy Storchaka
· 9 years ago
ec39756
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
4884271
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
ab479c4
Issue #26494: Fixed crash on iterating exhausting iterators.
by Serhiy Storchaka
· 9 years ago
fbb1c5e
Issue #26494: Fixed crash on iterating exhausting iterators.
by Serhiy Storchaka
· 9 years ago
3625af5
Moved misplaced functions to the section for C API functions.
by Raymond Hettinger
· 9 years ago
2c257ab
Responsibility for argument checking belongs in set.__init__() rather than set.__new__().
by Raymond Hettinger
· 9 years ago
b72e21b
Speed-up construction of empty sets by approx 12-14%.
by Raymond Hettinger
· 9 years ago
f963c13
longobject.c: fix compilation warning on Windows 64-bit
by Victor Stinner
· 9 years ago
0aed3a4
_PyMem_DebugFree(): fix compiler warning on Windows
by Victor Stinner
· 9 years ago
fac3956
Optimize bytes.replace(b'', b'.')
by Victor Stinner
· 9 years ago
ad52437
Fail if PyMem_Malloc() is called without holding the GIL
by Victor Stinner
· 9 years ago
ffcf1a5
Oops, revert unwanted change used to create an example
by Victor Stinner
· 9 years ago
0611c26
On memory error, dump the memory block traceback
by Victor Stinner
· 9 years ago
c4aec36
Check the GIL in PyObject_Malloc()
by Victor Stinner
· 9 years ago
34be807
Add PYTHONMALLOC env var
by Victor Stinner
· 9 years ago
0f04bc7
merge 3.5 (closes #26478)
by Benjamin Peterson
· 9 years ago
cfc2a1f
merge 3.4 (closes #26478)
by Benjamin Peterson
· 9 years ago
f11b25b
properly use the ObjArgs variant of CallMethod in dictview binary operations (closes #26478)
by Benjamin Peterson
· 9 years ago
d2dc15b
Merge 3.5 (issue #25888)
by Yury Selivanov
· 9 years ago
c724bae
coroutines: Error when awaiting on coroutine that's being awaited
by Yury Selivanov
· 9 years ago
f219285
Merge 3.5
by Victor Stinner
· 9 years ago
3379867
Issue #26464: Fix unicode_fast_translate() again
by Victor Stinner
· 9 years ago
3d9d77a
Merge 3.5
by Victor Stinner
· 9 years ago
6c9aa8f
Fix str.translate()
by Victor Stinner
· 9 years ago
3e48b38
Merge 3.5 (issue #25887)
by Yury Selivanov
· 9 years ago
77c9681
Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once.
by Yury Selivanov
· 9 years ago
e0b2309
Issues #26289 and #26315: Optimize floor/modulo div for single-digit longs
by Yury Selivanov
· 9 years ago
7e3a91a
Issue #26136: Upgrade the generator_stop warning to DeprecationWarning
by Martin Panter
· 9 years ago
d2962f1
Issue #25949: __dict__ for an OrderedDict instance is now created only when
by Serhiy Storchaka
· 9 years ago
a0fcaca
Issue #26288: Fix comment
by Yury Selivanov
· 9 years ago
186c30b
Issue #26288: Optimize PyLong_AsDouble.
by Yury Selivanov
· 9 years ago
f502154
Add early-out for the common case where kwds is NULL (gives 1.1% speedup).
by Raymond Hettinger
· 9 years ago
ce5179f
Issue #23601: Use small object allocator for dict key objects
by Raymond Hettinger
· 9 years ago
5b96f17
Merge 3.5
by Victor Stinner
· 9 years ago
5bc03a6
Fix resize_compact()
by Victor Stinner
· 9 years ago
0dceb91
Tests versus zero are more compact than tests versus -1.
by Raymond Hettinger
· 9 years ago
3cdd5fb
code_richcompare() now uses the constants types
by Victor Stinner
· 9 years ago
efb2413
code_richcompare() now uses the constants types
by Victor Stinner
· 9 years ago
9f78939
Issue #26107: Fix typo in Objects/lnotab_notes.txt
by Victor Stinner
· 9 years ago
f3914eb
co_lnotab supports negative line number delta
by Victor Stinner
· 9 years ago
b56837a
Merge 3.5
by Victor Stinner
· 9 years ago
bfd316e
Add _PyThreadState_UncheckedGet()
by Victor Stinner
· 9 years ago
4918b47
Issue #25935: Garbage collector now breaks reference loops with OrderedDict.
by Serhiy Storchaka
· 9 years ago
d205d01
Issue #25935: Garbage collector now breaks reference loops with OrderedDict.
by Serhiy Storchaka
· 9 years ago
2c02849
merge 3.5 (#25731)
by Benjamin Peterson
· 9 years ago
9ad1154
set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731)
by Benjamin Peterson
· 9 years ago
3b63dc3
- merge 3.5
by doko@ubuntu.com
· 9 years ago
17210f5
dictobject.c(dict_sizeof): Make it static again.
by doko@ubuntu.com
· 9 years ago
3d220cc
As per further discussion, re-enable the typeobject.c guard for picklability.
by Barry Warsaw
· 9 years ago
09880c8
Comment out some tests that won't pass now that we've reverted the
by Barry Warsaw
· 9 years ago
ec71f17
Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
by Barry Warsaw
· 9 years ago
885e193
Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
by Barry Warsaw
· 9 years ago
576f132
Issue #20440: Cleaning up the code by using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
3e47a13
merge 3.5
by Benjamin Peterson
· 9 years ago
4e3dd51
merge 3.4
by Benjamin Peterson
· 9 years ago
630329e
merge 3.3
by Benjamin Peterson
· 9 years ago
0e617e2
remove some copyright notices supserseded by the toplevel ones
by Benjamin Peterson
· 9 years ago
288cb25
Issue #25961: Disallowed null characters in the type name.
by Serhiy Storchaka
· 9 years ago
42bf8fc
Issue #25961: Disallowed null characters in the type name.
by Serhiy Storchaka
· 9 years ago
4e6aad1
Clean up float.as_integer_ratio().
by Serhiy Storchaka
· 9 years ago
0d250bc
Issue #25971: Optimized creating Fractions from floats by 2 times and from
by Serhiy Storchaka
· 9 years ago
1ed017a
Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.
by Serhiy Storchaka
· 9 years ago
726fc13
Issue #20440: More use of Py_SETREF.
by Serhiy Storchaka
· 9 years ago
191321d
Issue #20440: More use of Py_SETREF.
by Serhiy Storchaka
· 9 years ago
bdb908e
Issue #20440: Applied yet one patch for using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
4a1e70f
Issue #20440: Applied yet one patch for using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
f9253c9
Issue #22995: Instances of extension types with a state that aren't
by Serhiy Storchaka
· 9 years ago
f81be8a
Issue #22995: Instances of extension types with a state that aren't
by Serhiy Storchaka
· 9 years ago
ef1585e
Issue #25923: Added more const qualifiers to signatures of static and private functions.
by Serhiy Storchaka
· 9 years ago
2d06e84
Issue #25923: Added the const qualifier to static constant arrays.
by Serhiy Storchaka
· 9 years ago
f006940
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 9 years ago
5a57ade
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 9 years ago
3987e26
Issue #25914: Fixed and simplified OrderedDict.__sizeof__.
by Serhiy Storchaka
· 9 years ago
0ce7a3a
Issue #25914: Fixed and simplified OrderedDict.__sizeof__.
by Serhiy Storchaka
· 9 years ago
3182db3
Issue #25766: Special method __bytes__() now works in str subclasses.
by Serhiy Storchaka
· 9 years ago
5aac3ed
Issue #25766: Special method __bytes__() now works in str subclasses.
by Serhiy Storchaka
· 9 years ago
a9406e7
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
by Serhiy Storchaka
· 9 years ago
5c4064e
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
by Serhiy Storchaka
· 9 years ago
42bb126
Issue #25899: Converted Objects/listsort.txt to UTF-8.
by Serhiy Storchaka
· 9 years ago
9b3a2ee
Issues #25890, #25891, #25892: Removed unused variables in Windows code.
by Serhiy Storchaka
· 9 years ago
e449587
Minor tweek. Counting down rather than up reduces register pressure.
by Raymond Hettinger
· 9 years ago
86d322f
Undo inadvertent line swap
by Raymond Hettinger
· 9 years ago
5088f60
Hoist constant expressions (so->table and so->mask) out of the inner-loop.
by Raymond Hettinger
· 9 years ago
7c088a9
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
6648bf5
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
7aa6908
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
6a50e79
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
670d78a
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
Next »