Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
d01a805a388ba2e04c0d35ebec911c1f9743dbd7
/
Objects
a6c3299
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
by Miss Islington (bot)
· 7 years ago
136905f
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
by Miss Islington (bot)
· 7 years ago
e32bbaf
[3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928)
by xdegaye
· 7 years ago
04aadf2
[3.7] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (#6074)
by Serhiy Storchaka
· 7 years ago
bc2e110
closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)
by Miss Islington (bot)
· 7 years ago
ef20abe
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
by Miss Islington (bot)
· 7 years ago
09819ef
bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler. (GH-5636) (GH-5650)
by Miss Islington (bot)
· 7 years ago
e86db34
[3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)
by Miss Islington (bot)
· 7 years ago
86fdad0
bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)
by Xiang Zhang
· 7 years ago
2a2270d
bpo-32703: Fix coroutine resource warning in case where there's an error (GH-5410)
by Yury Selivanov
· 7 years ago
8017b80
bpo-28685: Fix compiler warning (GH-5423)
by Victor Stinner
· 7 years ago
1e34da4
bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#582)
by embg
· 7 years ago
a4d0001
bpo-32690: Preserve order of locals() (#5379)
by Raymond Hettinger
· 7 years ago
43c0f1a
bpo-32685: Improve suggestion for print statement (GH-5375)
by Nitish Chandra
· 7 years ago
bea5706
bpo-32677: Optimize str.isascii() (GH-5356)
by INADA Naoki
· 7 years ago
7cc95f5
Fix wrong assert in unicodeobject (GH-5340)
by INADA Naoki
· 7 years ago
a49ac99
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)
by INADA Naoki
· 7 years ago
43c47fe
bpo-32670: Enforce PEP 479. (#5327)
by Yury Selivanov
· 7 years ago
d7773d9
bpo-18533: Avoid RecursionError from repr() of recursive dictview (#4823)
by bennorth
· 7 years ago
e76daeb
bpo-32571: Fix reading uninitialized memory (GH-5332)
by INADA Naoki
· 7 years ago
f320be7
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
by Serhiy Storchaka
· 7 years ago
f23746a
bpo-32436: Implement PEP 567 (#5027)
by Yury Selivanov
· 7 years ago
b0a7a03
bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067)
by Yury Selivanov
· 7 years ago
fc2f407
bpo-32591: Add native coroutine origin tracking (#5250)
by Nathaniel J. Smith
· 7 years ago
d57f26c
bpo-32028: Fix suggestions for indented print statements (GH-4688)
by Sanyam Khurana
· 7 years ago
fa78806
Removed unnecesssary bit inversion which doesn't improve dispersion statistics (#5235)
by Raymond Hettinger
· 7 years ago
378edee
bpo-32544: Speed up hasattr() and getattr() (GH-5173)
by INADA Naoki
· 7 years ago
b44c516
bpo-26163: Frozenset hash improvement (#5194)
by Raymond Hettinger
· 7 years ago
7ed7aea
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
by Victor Stinner
· 7 years ago
3329992
bpo-29476: Simplify set_add_entry() (#5175)
by Raymond Hettinger
· 7 years ago
cb3ae55
bpo-29240: Ignore UTF-8 Mode in time module (#5148)
by Victor Stinner
· 7 years ago
2cba6b8
bpo-29240: readline now ignores the UTF-8 Mode (#5145)
by Victor Stinner
· 7 years ago
ce5b0e9
bpo-32226: Make __class_getitem__ an automatic class method. (#5098)
by Serhiy Storchaka
· 7 years ago
78e24d4
Fix outdated comment in typeobject.c (GH-5090)
by Berker Peksag
· 7 years ago
1470914
bpo-32468: Better frame repr() (#5067)
by Antoine Pitrou
· 7 years ago
9dd7620
bpo-32030: Add _Py_EncodeLocaleRaw() (#4961)
by Victor Stinner
· 7 years ago
e47e698
bpo-32030: Add _Py_EncodeUTF8_surrogateescape() (#4960)
by Victor Stinner
· 7 years ago
6b91a59
bpo-32385: Clean up the C3 MRO algorithm implementation. (#4942)
by Serhiy Storchaka
· 7 years ago
1f1a34c
bpo-32379: Faster MRO computation for single inheritance (#4932)
by Antoine Pitrou
· 7 years ago
a5552f0
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
by Serhiy Storchaka
· 7 years ago
2b5fd1e
bpo-32226: Implementation of PEP 560 (core components) (#4732)
by Ivan Levkivskyi
· 7 years ago
5364b5c
bpo-32225: Implementation of PEP 562 (#4731)
by Ivan Levkivskyi
· 7 years ago
91106cd
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
by Victor Stinner
· 7 years ago
4ae06c5
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748)
by Serhiy Storchaka
· 7 years ago
780acc8
bpo-31506: Improve the error message logic for class instantiation (GH-4740)
by Sanyam Khurana
· 7 years ago
dd431b3
PyLong_FromString(): fix Coverity CID 1424951 (#4738)
by Victor Stinner
· 7 years ago
6bf992a
bpo-32030: Add pymain_get_global_config() (#4735)
by Victor Stinner
· 7 years ago
29ba688
bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884)
by Serhiy Storchaka
· 7 years ago
1fb72d2
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
by Serhiy Storchaka
· 7 years ago
078f181
bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)
by Nick Coghlan
· 7 years ago
b64de46
bpo-32030: Cleanup "path config" code (#4663)
by Victor Stinner
· 7 years ago
5d39e04
bpo-32030: Rework memory allocators (#4625)
by Victor Stinner
· 7 years ago
46972b7
bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)
by Victor Stinner
· 7 years ago
9e87e77
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
by Victor Stinner
· 7 years ago
6a54c67
bpo-31979: Remove unused align_maxchar() function (#4527)
by Victor Stinner
· 7 years ago
25420fe
bpo-32030: Add more options to _PyCoreConfig (#4485)
by Victor Stinner
· 7 years ago
ccb0442
bpo-32043: New "developer mode": "-X dev" option (#4413)
by Victor Stinner
· 7 years ago
f7e5b56
bpo-32030: Split Py_Main() into subfunctions (#4399)
by Victor Stinner
· 7 years ago
f8a4c03
bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650)
by Serhiy Storchaka
· 7 years ago
28b6248
bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376)
by Sanyam Khurana
· 7 years ago
9b6c60c
bpo-31979: Simplify transforming decimals to ASCII (#4336)
by Serhiy Storchaka
· 7 years ago
60c3d35
bpo-31572: Get rid of _PyObject_HasAttrId() in dict and OrderedDict. (#3728)
by Serhiy Storchaka
· 7 years ago
e2f92de
Add the const qualifier to "char *" variables that refer to literal strings. (#4370)
by Serhiy Storchaka
· 7 years ago
8c663fd
Replace KB unit with KiB (#4293)
by Victor Stinner
· 7 years ago
3cc4c53
bpo-31626: Mark ends of the reallocated block in debug build. (#4210)
by Serhiy Storchaka
· 7 years ago
a5293b4
Fix miscellaneous typos (#4275)
by luzpaz
· 7 years ago
e8b1965
bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793)
by stratakis
· 7 years ago
9ed83c4
bpo-18835: Cleanup pymalloc (#4200)
by Victor Stinner
· 7 years ago
b484d56
bpo-31626: Fixed a bug in debug memory allocator. (#3844)
by Serhiy Storchaka
· 7 years ago
a231428
bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158)
by Serhiy Storchaka
· 7 years ago
56d1f5c
bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)
by xdegaye
· 7 years ago
086c3ae
bpo-31835: Optimize also FASTCALL using __future__ (#4087)
by Victor Stinner
· 7 years ago
ae3087c
Move exc state to generator. Fixes bpo-25612 (#1773)
by Mark Shannon
· 7 years ago
56cb465
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
by Serhiy Storchaka
· 7 years ago
0ccc0f6
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840)
by Oren Milman
· 7 years ago
79ba471
bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909)
by Serhiy Storchaka
· 7 years ago
faa135a
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
by Yury Selivanov
· 7 years ago
85c0b89
bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827)
by Serhiy Storchaka
· 7 years ago
2102c78
bpo-31336: Speed up type creation. (#3279)
by scoder
· 7 years ago
0e950dd
bpo-31579: Fixed a possible leak in enumerate() with large indices. (#3753)
by Serhiy Storchaka
· 7 years ago
8110dbd
bpo-26491 Defer DECREFs until enumobject is in a consistent state (#3747)
by Raymond Hettinger
· 7 years ago
5e02c78
bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481)
by Serhiy Storchaka
· 7 years ago
b3a7796
bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631)
by Serhiy Storchaka
· 7 years ago
0ad05c3
bpo-30486: Make cell_set_contents() symbol private (#3668)
by Victor Stinner
· 7 years ago
a6c0c06
bpo-31506: Improve the error message logic for object.__new__ and object.__init__. (GH-3650)
by Serhiy Storchaka
· 7 years ago
6db7033
bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620)
by Oren Milman
· 7 years ago
4ab46d7
bpo-31497: Add private helper _PyType_Name(). (#3630)
by Serhiy Storchaka
· 7 years ago
3f9eee6
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
by Eric Snow
· 7 years ago
b2e5794
bpo-31338 (#3374)
by Barry Warsaw
· 7 years ago
ccb3c76
bpo-30860: Fix deadcode in obmalloc.c (#3499)
by Victor Stinner
· 7 years ago
d393c1b
bpo-28411: Isolate PyInterpreterState.modules (#3575)
by Eric Snow
· 7 years ago
dae0276
bpo-30860: Fix a refleak. (#3567)
by Eric Snow
· 7 years ago
93c92f7
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
by Eric Snow
· 7 years ago
13ad3b7
bpo-31462: Remove trailing whitespaces. (#3564)
by Serhiy Storchaka
· 7 years ago
8728018
bpo-30860: Fix a refleak. (#3506)
by Eric Snow
· 7 years ago
2bb69a5
bpo-31373: remove overly strict float range checks (#3486)
by Benjamin Peterson
· 7 years ago
2b7953d
replace custom table with pyctype (#3456)
by Benjamin Peterson
· 7 years ago
e3b2b4b
bpo-31393: Fix the use of PyUnicode_READY(). (#3451)
by Serhiy Storchaka
· 7 years ago
8e0ad46
update all_name_chars comment after 9020ac7cce97dddad51b285fffc31fe4ddf60898 (#3452)
by Benjamin Peterson
· 7 years ago
2ebc5ce
bpo-30860: Consolidate stateful runtime globals. (#3397)
by Eric Snow
· 7 years ago
Next »