Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a327331ceca9ff91f0a5f77b8de30d50bd9b164b
/
Objects
7eb1bec
Issue #28189: dictitems_contains no longer swallows compare errors.
by Raymond Hettinger
· 8 years ago
6d57fe1
Issue #28139: Fix messed up indentation
by Martin Panter
· 8 years ago
4a72a7b
Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an empty bytestring is passed
by Berker Peksag
· 8 years ago
ed6224e
Issue #28045: Fix comment in range_contains_long()
by Berker Peksag
· 8 years ago
36820dd
Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0.
by Mark Dickinson
· 8 years ago
0be894b
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Martin Panter
· 8 years ago
b88db87
supress coroutine warning when an exception is pending (#27968)
by Benjamin Peterson
· 8 years ago
33d2a49
promote some shifts to unsigned, so as not to invoke undefined behavior
by Benjamin Peterson
· 8 years ago
5a7d923
make sure to not call memcpy with a NULL second argument
by Benjamin Peterson
· 8 years ago
bdddb11
clear out f_gen during generator finalization (closes #27812)
by Benjamin Peterson
· 8 years ago
2f40ed4
do not allow _PyGen_Finalize to fail (closes #27811)
by Benjamin Peterson
· 8 years ago
7ea386e
Issue 19504: Change "customise" to "customize" American spelling.
by Raymond Hettinger
· 8 years ago
8682f57
Issue #27782: Fix m_methods handling in multiphase init
by Nick Coghlan
· 8 years ago
6902ddf
Fix a refleak in call_maybe()
by Victor Stinner
· 8 years ago
d925bd5
Fix a refleak in call_method()
by Victor Stinner
· 8 years ago
69332c1
Fix spelling and grammar in documentation and code comments
by Martin Panter
· 8 years ago
eb99570
Issue #27626: Spelling fixes in docs, comments and internal names
by Martin Panter
· 8 years ago
fd0d593
Issue #26662: Set PYTHON_FOR_GEN in configure
by Xavier de Gaye
· 8 years ago
e8db861
Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()
by Martin Panter
· 8 years ago
371731e
Issue #27507: Check for integer overflow in bytearray.extend()
by Martin Panter
· 8 years ago
06cfb0c
Issue #27473: Fixed possible integer overflow in bytes and bytearray
by Serhiy Storchaka
· 8 years ago
537ad7a
#20647: Update dictobject.c comments to account for randomized string hashes.
by R David Murray
· 8 years ago
27007dc
fix refleaks in PyDict_SetItem error cases (closes #27248)
by Benjamin Peterson
· 8 years ago
af65872
Issue #27443: __length_hint__() of bytearray itearator no longer return
by Serhiy Storchaka
· 8 years ago
2275e62
Fix spelling errors in code comments
by Martin Panter
· 8 years ago
9305d83
Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as
by Serhiy Storchaka
· 8 years ago
a6f6edb
Issue #27243: Fix __aiter__ protocol
by Yury Selivanov
· 8 years ago
484c913
Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.
by Serhiy Storchaka
· 8 years ago
64a263a
Issue #20041: Fixed TypeError when frame.f_trace is set to None.
by Serhiy Storchaka
· 8 years ago
e26da7c
Issue #27171: Fix typos in documentation, comments, and test function names
by Martin Panter
· 8 years ago
a90a4a9
Issue #27125: Remove duplicated words from documentation and comments
by Martin Panter
· 8 years ago
8d56c02
Issue #27125: Fix various errors like “will [be] inherited”
by Martin Panter
· 8 years ago
c352620
backout 3c9512d8ac0d
by Benjamin Peterson
· 8 years ago
7bf36da
Issue #27039: Fixed bytearray.remove() for values greater than 127.
by Serhiy Storchaka
· 8 years ago
07451dd
fix indentation of comments in cellobject.c (closes #27011)
by Benjamin Peterson
· 9 years ago
ea36c94
Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.
by Serhiy Storchaka
· 9 years ago
21eb487
Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
by Serhiy Storchaka
· 9 years ago
7822f15
Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
by Serhiy Storchaka
· 9 years ago
8f26565
Fix spelling (inital), grammar (may translates) in documentation, comments
by Martin Panter
· 9 years ago
6a7b3a7
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
by Serhiy Storchaka
· 9 years ago
b0c04cb
fix slice cache finalization to use gc del
by Benjamin Peterson
· 9 years ago
2b601d3
add gc support to slice (closes #26659)
by Benjamin Peterson
· 9 years ago
6245cb3
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
by Martin Panter
· 9 years ago
3d74976
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
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
4884271
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
fbb1c5e
Issue #26494: Fixed crash on iterating exhausting iterators.
by Serhiy Storchaka
· 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
c724bae
coroutines: Error when awaiting on coroutine that's being awaited
by Yury Selivanov
· 9 years ago
3379867
Issue #26464: Fix unicode_fast_translate() again
by Victor Stinner
· 9 years ago
6c9aa8f
Fix str.translate()
by Victor Stinner
· 9 years ago
77c9681
Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once.
by Yury Selivanov
· 9 years ago
5bc03a6
Fix resize_compact()
by Victor Stinner
· 9 years ago
3cdd5fb
code_richcompare() now uses the constants types
by Victor Stinner
· 9 years ago
bfd316e
Add _PyThreadState_UncheckedGet()
by Victor Stinner
· 9 years ago
d205d01
Issue #25935: Garbage collector now breaks reference loops with OrderedDict.
by Serhiy Storchaka
· 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
17210f5
dictobject.c(dict_sizeof): Make it static again.
by doko@ubuntu.com
· 9 years ago
09880c8
Comment out some tests that won't pass now that we've reverted the
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
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
42bf8fc
Issue #25961: Disallowed null characters in the type name.
by Serhiy Storchaka
· 9 years ago
191321d
Issue #20440: More use of 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
f81be8a
Issue #22995: Instances of extension types with a state that aren't
by Serhiy Storchaka
· 9 years ago
5a57ade
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 9 years ago
0ce7a3a
Issue #25914: Fixed and simplified OrderedDict.__sizeof__.
by Serhiy Storchaka
· 9 years ago
5aac3ed
Issue #25766: Special method __bytes__() now works in str subclasses.
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
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
670d78a
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
d28bb62
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
f9afda5
Issue #24731: Fixed crash on converting objects with special methods
by Serhiy Storchaka
· 9 years ago
1509580
Issue #24731: Fixed crash on converting objects with special methods
by Serhiy Storchaka
· 9 years ago
a4d33b3
make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (closes #25630)
by Benjamin Peterson
· 9 years ago
19a70e7
Issue #25462: The hash of the key now is calculated only once in most
by Serhiy Storchaka
· 9 years ago
609a2e1
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
by Serhiy Storchaka
· 9 years ago
d7a4415
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
by Serhiy Storchaka
· 9 years ago
7c3f385
Fix Visual Studio warning.
by Stefan Krah
· 9 years ago
0ce5b6e
Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.
by Stefan Krah
· 9 years ago
eeb896c
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
by Martin Panter
· 9 years ago
61d6e4a
Issue #24802: Merge null termination fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
97f46db
Issue #25410: Made testing that od_fast_nodes and dk_entries are in sync more
by Serhiy Storchaka
· 9 years ago
d5f353e
Issue #24726: Revert setting the value on the dict if
by Serhiy Storchaka
· 9 years ago
9c96761
Issue #25558: Refactoring OrderedDict iteration.
by Serhiy Storchaka
· 9 years ago
710cd34
Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict that
by Serhiy Storchaka
· 9 years ago
b45b7b2
Issue #25449: Iterating OrderedDict with keys with unstable hash now raises
by Serhiy Storchaka
· 9 years ago
a84f6c3
Issue #25523: Merge a-to-an corrections from 3.4.
by Serhiy Storchaka
· 9 years ago
d65c949
Issue #25523: Further a-to-an corrections.
by Serhiy Storchaka
· 9 years ago
2eb819f
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
7462b649
Issue #25523: Correct "a" article to "an" article
by Martin Panter
· 9 years ago
14eefe3
Issue #25395: Fixed crash when highly nested OrderedDict structures were
by Serhiy Storchaka
· 9 years ago
4575beb
Issue #25410: C implementation of OrderedDict now uses type(self) instead of
by Serhiy Storchaka
· 9 years ago
d17427b
Issue #25410: Fixed a memory leak in OrderedDict in the case when key's hash
by Serhiy Storchaka
· 9 years ago
8003baf
Issue #25410: Cleaned up and fixed minor bugs in C implementation of OrderedDict.
by Serhiy Storchaka
· 9 years ago
992ec46
Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()
by Serhiy Storchaka
· 9 years ago
Next »