index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...
Mark Shannon
2021-10-06
1
-130/+151
*
bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)
Serhiy Storchaka
2021-10-04
2
-12/+8
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
2
-3/+3
*
Fix spelling error in comment (GH-28696)
Raymond Hettinger
2021-10-02
1
-1/+1
*
bpo-45061: Revert unicode_is_singleton() change (GH-28516)
Victor Stinner
2021-09-22
1
-2/+4
*
[codemod] Fix non-matching bracket pairs (GH-28473)
Mohamad Mansour
2021-09-21
1
-1/+1
*
bpo-45061: Detect refcount bug on empty string singleton (GH-28504)
Victor Stinner
2021-09-21
1
-18/+37
*
bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)
Victor Stinner
2021-09-21
3
-5/+21
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
8
-9/+9
*
bpo-45198: __set_name__ documentation not clear about its usage with non-desc...
Raymond Hettinger
2021-09-18
1
-1/+2
*
bpo-44640: Improve punctuation consistency in isinstance/issubclass error mes...
wyz23x2
2021-09-17
1
-2/+2
*
bpo-45219: Factor dictkey indexing (GH-28389)
Mark Shannon
2021-09-17
1
-42/+84
*
bpo-45155 : Default arguments for int.to_bytes(length=1, byteorder=sys.byteor...
Barry Warsaw
2021-09-16
2
-45/+74
*
bpo-45167: Fix deepcopying of GenericAlias (GH-28324)
Serhiy Storchaka
2021-09-15
1
-0/+2
*
closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)
Benjamin Peterson
2021-09-14
1
-1299/+1345
*
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...
Serhiy Storchaka
2021-09-12
6
-12/+21
*
bpo-44348: BaseException deallocator uses trashcan (GH-28190)
Victor Stinner
2021-09-07
1
-1/+6
*
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)
Yury Selivanov
2021-09-07
1
-7/+5
*
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...
Pablo Galindo Salgado
2021-09-07
1
-22/+96
*
bpo-34561: Switch to Munro & Wild "powersort" merge strategy. (#28108)
Tim Peters
2021-09-06
2
-92/+177
*
bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)
Serhiy Storchaka
2021-09-04
1
-16/+18
*
bpo-45061: Detect Py_DECREF(Py_True) bug (GH-28089)
Victor Stinner
2021-08-31
2
-7/+11
*
bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)
chilaxan
2021-08-27
1
-1/+1
*
bpo-44945: Specialize BINARY_ADD (GH-27967)
Mark Shannon
2021-08-27
1
-6/+12
*
bpo-44946: Streamline operators and creation of ints for common case of singl...
Mark Shannon
2021-08-25
1
-92/+160
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
3
-25/+11
*
Fix bytes.__bytes__ to not truncate at a zero byte (GH-27902)
Mark Dickinson
2021-08-23
1
-1/+1
*
bpo-24234: Implement bytes.__bytes__ (GH-27901)
Dong-hee Na
2021-08-23
2
-1/+39
*
bpo-24234: implement complex.__complex__ (GH-27887)
Mark Dickinson
2021-08-23
2
-1/+40
*
bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)
Mark Dickinson
2021-08-20
1
-2/+2
*
bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772)
Mark Dickinson
2021-08-17
1
-21/+7
*
bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)
Hai Shi
2021-08-17
1
-0/+6
*
Fix a SystemError in code.replace() (#27771)
Guido van Rossum
2021-08-16
1
-3/+5
*
bpo-44914: Maintain invariants of type version tags. (GH-27773)
Mark Shannon
2021-08-16
1
-27/+13
*
bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...
Pablo Galindo Salgado
2021-08-10
1
-1/+5
*
bpo-44854: Remove trailing whitespaces (GH-27689)
Serhiy Storchaka
2021-08-09
2
-2/+2
*
bpo-44872: use new trashcan macros in framobject.c (#27683)
Irit Katriel
2021-08-09
1
-2/+2
*
bpo-44826: Specialize STORE_ATTR (GH-27590)
Mark Shannon
2021-08-09
1
-3/+1
*
bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)
Mark Shannon
2021-08-04
2
-4/+37
*
bpo-27275: Change popitem() and pop() methods of collections.OrderedDict (GH-...
Serhiy Storchaka
2021-08-03
1
-67/+26
*
bpo-44206: Make sure that dict-keys's version is set to zero when value is po...
Mark Shannon
2021-08-02
1
-0/+1
*
bpo-44662: Add ability to annotate types.Union (#27214)
Yurii Karabas
2021-07-29
1
-1/+23
*
bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292)
Serhiy Storchaka
2021-07-29
1
-2/+9
*
bpo-41103: Resurrect the old buffer protocol. (GH-27437)
Inada Naoki
2021-07-29
1
-0/+79
*
bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)
Hai Shi
2021-07-29
1
-0/+6
*
bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-2...
Dong-hee Na
2021-07-28
1
-1/+1
*
bpo-34013: Move the Python 2 hints from the exception constructor to the pars...
Pablo Galindo Salgado
2021-07-27
1
-201/+0
*
bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278)
T. Wouters
2021-07-26
1
-8/+15
*
bpo-44732: Rename types.Union to types.UnionType (#27342)
Hasan
2021-07-26
1
-3/+3
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
3
-233/+336
[next]