Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
cc16be85c0b7119854c00fb5c666825deef641cf
/
Objects
cc16be8
Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)
by Steve Dower
· 8 years ago
003f059
link to canonical blogspot
by Benjamin Peterson
· 8 years ago
7322225
use native inline instead of Py_LOCAL_INLINE
by Benjamin Peterson
· 8 years ago
f0acae2
rearrange to make gcc happy
by Benjamin Peterson
· 8 years ago
98ee9d5
Add Py_MEMBER_SIZE macro
by Victor Stinner
· 8 years ago
742da04
Implement compact dict
by Victor Stinner
· 8 years ago
47ff073
more PY_LONG_LONG to long long
by Benjamin Peterson
· 8 years ago
c943265
Issue #15767: Add ModuleNotFoundError.
by Eric Snow
· 8 years ago
2e7c5e9
replace some Py_LOCAL_INLINE with the inline keyword
by Benjamin Peterson
· 8 years ago
d0600ed
Make PyCodeObject.co_extra even more private to force users through the proper API.
by Brett Cannon
· 8 years ago
d39206a
use c++ style comments
by Benjamin Peterson
· 8 years ago
3788b85
Change error return value to be more consistent with the rest of Python
by Brett Cannon
· 8 years ago
1bf494b
use a the bool type for a boolean variable
by Benjamin Peterson
· 8 years ago
5c4de28
Add the co_extra field and accompanying APIs to code objects.
by Brett Cannon
· 8 years ago
a9296e7
require C99 bool
by Benjamin Peterson
· 8 years ago
2f8bfef
replace PY_SIZE_MAX with SIZE_MAX
by Benjamin Peterson
· 8 years ago
9d2617b
merge 3.5 (#27968)
by Benjamin Peterson
· 8 years ago
b88db87
supress coroutine warning when an exception is pending (#27968)
by Benjamin Peterson
· 8 years ago
4b9abf3
merge 3.5
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
a571120
Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder().
by Brett Cannon
· 8 years ago
05448a6
merge 3.5
by Benjamin Peterson
· 8 years ago
5a7d923
make sure to not call memcpy with a NULL second argument
by Benjamin Peterson
· 8 years ago
62ec331
Optimize unicode_escape and raw_unicode_escape
by Victor Stinner
· 8 years ago
2740e46
_PyUnicodeWriter: assert that max character <= MAX_UNICODE
by Victor Stinner
· 8 years ago
ec6ce87
Issue #26027: Support path-like objects in PyUnicode-FSConverter().
by Brett Cannon
· 8 years ago
ca47063
replace Py_(u)intptr_t with the c99 standard types
by Benjamin Peterson
· 8 years ago
9b3d770
replace Python aliases for standard integer types with the standard integer types (#17884)
by Benjamin Peterson
· 8 years ago
ea525a2
Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.
by Serhiy Storchaka
· 8 years ago
d953f8e
remove some silly defined() tests
by Benjamin Peterson
· 8 years ago
af580df
replace PY_LONG_LONG with long long
by Benjamin Peterson
· 8 years ago
3466bde
Avoid calling functions with an empty string as format string
by Victor Stinner
· 8 years ago
ad8c83a
Avoid inefficient way to call functions without argument
by Victor Stinner
· 8 years ago
ed4aa83
require a long long data type (closes #27961)
by Benjamin Peterson
· 8 years ago
942889a
Issue #27938: Add a fast-path for us-ascii encoding
by Victor Stinner
· 8 years ago
92a6c17
Issue #24254: Preserve class attribute definition order.
by Eric Snow
· 8 years ago
55f4452
remove memory indirections in dict_traverse (closes #27956)
by Benjamin Peterson
· 8 years ago
2250c4c
Issue #27830: Remove unused _PyStack_AsDict()
by Victor Stinner
· 8 years ago
7b24b27
merge 3.5 (#27812)
by Benjamin Peterson
· 8 years ago
bdddb11
clear out f_gen during generator finalization (closes #27812)
by Benjamin Peterson
· 8 years ago
9802081
merge 3.5 (closes #27811)
by Benjamin Peterson
· 8 years ago
2f40ed4
do not allow _PyGen_Finalize to fail (closes #27811)
by Benjamin Peterson
· 8 years ago
7c4e409
Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens.
by Mark Dickinson
· 8 years ago
1a05d6c
PEP 7 style for if/else in C
by Victor Stinner
· 8 years ago
15f44ab
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Raymond Hettinger
· 8 years ago
82a9527
Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory.
by Mark Dickinson
· 8 years ago
4e1de16
Issue #25402: in int-to-decimal-string conversion, reduce intermediate storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka.
by Mark Dickinson
· 8 years ago
583c6e8
Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman.
by Mark Dickinson
· 8 years ago
1b6c6da
Issue #27506: Support bytes/bytearray.translate() delete as keyword argument
by Martin Panter
· 8 years ago
f74c33a
Merge
by Raymond Hettinger
· 8 years ago
7ea386e
Issue 19504: Change "customise" to "customize" American spelling.
by Raymond Hettinger
· 8 years ago
e90bdb1
Issue #27830: Revert, remove _PyFunction_FastCallKeywords()
by Victor Stinner
· 8 years ago
3f1057a
method_call() and slot_tp_new() now uses fast call
by Victor Stinner
· 8 years ago
f7507dd
Issue #27830: Fix _PyObject_FastCallKeywords()
by Victor Stinner
· 8 years ago
53cb489
_PyObject_FastCallDict(): avoid _Py_CheckFunctionResult()
by Victor Stinner
· 8 years ago
577e1f8
Add _PyObject_FastCallKeywords()
by Victor Stinner
· 8 years ago
74319ae
Use Py_ssize_t type for number of arguments
by Victor Stinner
· 8 years ago
dd69564
PyObject_CallMethodObjArgs() now uses fast call
by Victor Stinner
· 8 years ago
d48af09
Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs)
by Victor Stinner
· 8 years ago
e62b852
PyObject_CallMethodObjArgs() now uses fast call
by Victor Stinner
· 8 years ago
463b86a
Issue #27809: Use _PyObject_FastCallDict()
by Victor Stinner
· 8 years ago
2990fa1
Issue #27809: Use _PyObject_FastCallDict()
by Victor Stinner
· 8 years ago
b900939
_PyFunction_FastCallDict() supports keyword args
by Victor Stinner
· 8 years ago
559bb6a
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
by Victor Stinner
· 8 years ago
b820d7f
Issue #27792: force int return type for modulo operations involving bools.
by Mark Dickinson
· 8 years ago
54cd196
Issue #26984: int() now always returns an instance of exact int.
by Serhiy Storchaka
· 8 years ago
1dc3c89
Untabify Objects/longobject.c.
by Mark Dickinson
· 8 years ago
dc590a4
Issue #25604: Fix minor bug in integer true division, which could
by Mark Dickinson
· 8 years ago
5d13238
Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch by Xiang Zhang.
by Mark Dickinson
· 8 years ago
cbcd221
Merge #27782 fix from 3.5
by Nick Coghlan
· 8 years ago
8682f57
Issue #27782: Fix m_methods handling in multiphase init
by Nick Coghlan
· 8 years ago
3766572
Issue #27692: Removed unnecessary NULL checks in exceptions.c.
by Serhiy Storchaka
· 8 years ago
253021d
Issue #27366: Fix init_subclass()
by Victor Stinner
· 8 years ago
9def090
PyFile_WriteObject() now uses fast call
by Victor Stinner
· 8 years ago
99ee9c7
calliter_iternext() now uses fast call
by Victor Stinner
· 8 years ago
6911267
slot_tp_iter() now uses fast call
by Victor Stinner
· 8 years ago
20a3007
slot_nb_bool() now uses fast call
by Victor Stinner
· 8 years ago
a12eec4
Issue #27128: Cleanup slot_nb_bool()
by Victor Stinner
· 8 years ago
5e87749
Issue #27128: slot_sq_item() uses fast call
by Victor Stinner
· 8 years ago
018016d
Issue #27128: Cleanup slot_sq_item()
by Victor Stinner
· 8 years ago
f736c26
call_method() and call_maybe() now use fast call
by Victor Stinner
· 8 years ago
94463c9
Cleanup call_method() and call_maybe()
by Victor Stinner
· 8 years ago
56142c7
Merge 3.5 (fix refleak in call_maybe())
by Victor Stinner
· 8 years ago
6902ddf
Fix a refleak in call_maybe()
by Victor Stinner
· 8 years ago
59e9ca6
Merge 3.5 (fix refleak in call_method)
by Victor Stinner
· 8 years ago
d925bd5
Fix a refleak in call_method()
by Victor Stinner
· 8 years ago
a7720f6
contains and rich compare slots use fast call
by Victor Stinner
· 8 years ago
8a31c82
Fix PyObject_Call() parameter names
by Victor Stinner
· 8 years ago
0d1a799
Avoid call_function_tail() for empty format str
by Victor Stinner
· 8 years ago
71aea8e
PEP 7: add {...} around null_error() in abstract.c
by Victor Stinner
· 8 years ago
d042f1f
Cleanup callmethod()
by Victor Stinner
· 8 years ago
64faad6
Cleanup call_function_tail()
by Victor Stinner
· 8 years ago
8880708
call_function_tail() uses fast call
by Victor Stinner
· 8 years ago
9be7e7b
Add _PyObject_FastCall()
by Victor Stinner
· 8 years ago
7fbce56
Issue #12946: Remove dead code in PyModule_GetDict
by Berker Peksag
· 8 years ago
3f015a6
Issue #27157: Make only type() itself accept the one-argument form
by Berker Peksag
· 8 years ago
97c1adf
Anti-registration of various ABC methods.
by Guido van Rossum
· 8 years ago
8bcf312
Issue #27786: Simplify x_sub()
by Victor Stinner
· 8 years ago
eb24988
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
by Serhiy Storchaka
· 8 years ago
9171a8b
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
by Serhiy Storchaka
· 8 years ago
Next »