FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Modules/_collectionsmodule.c - pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Modules
_collectionsmodule.c
on
pythoncapi
User selector
Datepicker
Commit history
Commits on Sep 4, 2018
Add _Py_SET_TYPE() and _Py_SET_SIZE()
Show description for b8d81ec
vstinner
committed
b8d81ec
View commit details
Copy full SHA for b8d81ec
View code at this point
Browse repository at this point
Commits on Jul 10, 2018
Factor-out two substantially identical code blocks. (GH-8219)
rhettinger
authored
66953f0
View commit details
Copy full SHA for 66953f0
View code at this point
Browse repository at this point
Commits on May 31, 2018
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
serhiy-storchaka
authored
a5c4228
View commit details
Copy full SHA for a5c4228
View code at this point
Browse repository at this point
Commits on Apr 29, 2018
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Show description for 55edd0c
siddhesh
authored and
serhiy-storchaka
committed
55edd0c
View commit details
Copy full SHA for 55edd0c
View code at this point
Browse repository at this point
Commits on Jan 25, 2018
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Show description for f320be7
serhiy-storchaka
authored and
methane
committed
f320be7
View commit details
Copy full SHA for f320be7
View code at this point
Browse repository at this point
Commits on Dec 15, 2017
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
serhiy-storchaka
authored
a5552f0
View commit details
Copy full SHA for a5552f0
View code at this point
Browse repository at this point
Commits on Sep 27, 2017
bpo-31586: Use _count_element fast path for real dicts.
orenmn
authored and
rhettinger
committed
31aca4b
View commit details
Copy full SHA for 31aca4b
View code at this point
Browse repository at this point
Commits on Sep 21, 2017
bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631)
Show description for b3a7796
serhiy-storchaka
authored
b3a7796
View commit details
Copy full SHA for b3a7796
View code at this point
Browse repository at this point
Commits on Sep 4, 2017
Code clean-up. Remove unnecessary pre-increment before the loop starts. (#3312)
rhettinger
authored
e1b0287
View commit details
Copy full SHA for e1b0287
View code at this point
Browse repository at this point
Commits on Aug 24, 2017
bpo-31095: fix potential crash during GC (GH-2974)
methane
authored
a6296d3
View commit details
Copy full SHA for a6296d3
View code at this point
Browse repository at this point
Commits on Jul 3, 2017
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Show description for 6969eaf
serhiy-storchaka
authored
6969eaf
View commit details
Copy full SHA for 6969eaf
View code at this point
Browse repository at this point
Commits on Mar 30, 2017
bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887)
Show description for d4edfc9
serhiy-storchaka
authored
d4edfc9
View commit details
Copy full SHA for d4edfc9
View code at this point
Browse repository at this point
bpo-29878: Add global instances of int for 0 and 1. (#852)
serhiy-storchaka
authored
ba85d69
View commit details
Copy full SHA for ba85d69
View code at this point
Browse repository at this point
Commits on Feb 24, 2017
bpo-29634: Reduce deque repeat execution when maxlen exist and size is not 1 (#255) (#255)
Louie Lu
authored and
rhettinger
committed
357bad7
View commit details
Copy full SHA for 357bad7
View code at this point
Browse repository at this point
Commits on Feb 6, 2017
Optimize deque index, insert and rotate() methods
Show description for dd407d5
vstinner
committed
dd407d5
View commit details
Copy full SHA for dd407d5
View code at this point
Browse repository at this point
Commits on Jan 13, 2017
Fix typo
rhettinger
committed
a24dca6
View commit details
Copy full SHA for a24dca6
View code at this point
Browse repository at this point
Commits on Dec 5, 2016
Issue #28858: Remove _PyObject_CallArg1() macro
Show description for 7bfb42d
vstinner
committed
7bfb42d
View commit details
Copy full SHA for 7bfb42d
View code at this point
Browse repository at this point
Commits on Dec 1, 2016
Replace PyObject_CallFunction() with fastcall
Show description for 4778eab
vstinner
committed
4778eab
View commit details
Copy full SHA for 4778eab
View code at this point
Browse repository at this point
Commits on Nov 6, 2016
Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as
Show description for f0b311b
serhiy-storchaka
committed
f0b311b
View commit details
Copy full SHA for f0b311b
View code at this point
Browse repository at this point
Commits on Sep 12, 2016
Revert part of 3471a3515827 that caused a performance regression
rhettinger
committed
8805717
View commit details
Copy full SHA for 8805717
View code at this point
Browse repository at this point
Commits on Sep 6, 2016
Avoid inefficient way to call functions without argument
Show description for ad8c83a
vstinner
committed
ad8c83a
View commit details
Copy full SHA for ad8c83a
View code at this point
Browse repository at this point
Commits on Jun 14, 2016
- Modules/_collectionsmodule.c: Mark one more internal symbol as static.
doko42
committed
17f0e61
View commit details
Copy full SHA for 17f0e61
View code at this point
Browse repository at this point
Commits on May 17, 2016
- make some internal symbols static
doko42
committed
bc73150
View commit details
Copy full SHA for bc73150
View code at this point
Browse repository at this point
Commits on Mar 6, 2016
Issue #26482: Allowed pickling recursive dequeues.
serhiy-storchaka
committed
a0d416f
View commit details
Copy full SHA for a0d416f
View code at this point
Browse repository at this point
Commits on Mar 4, 2016
More logicial order. Move space saving step to just before it is used.
rhettinger
committed
d79d5b1
View commit details
Copy full SHA for d79d5b1
View code at this point
Browse repository at this point
Commits on Mar 2, 2016
Factor-out common subexpression.
rhettinger
committed
6f86a33
View commit details
Copy full SHA for 6f86a33
View code at this point
Browse repository at this point
Put block length computations in a more logical order.
rhettinger
committed
589106b
View commit details
Copy full SHA for 589106b
View code at this point
Browse repository at this point
Commits on Feb 9, 2016
Issue #26200: The SETREF macro adds unnecessary work in some cases.
rhettinger
committed
3841866
View commit details
Copy full SHA for 3841866
View code at this point
Browse repository at this point
Commits on Feb 2, 2016
merge
rhettinger
committed
a638971
View commit details
Copy full SHA for a638971
View code at this point
Browse repository at this point
Commits on Jan 27, 2016
merge
rhettinger
committed
0ef0423
View commit details
Copy full SHA for 0ef0423
View code at this point
Browse repository at this point
Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen
rhettinger
committed
3743432
View commit details
Copy full SHA for 3743432
View code at this point
Browse repository at this point
Commits on Jan 24, 2016
Convert another post-decrement while-loop to pre-decrement for consistency
Show description for 306d6b1
rhettinger
committed
306d6b1
View commit details
Copy full SHA for 306d6b1
View code at this point
Browse repository at this point
Convert two other post-decrement while-loops to pre-decrements for consistency
Show description for 165eee2
rhettinger
committed
165eee2
View commit details
Copy full SHA for 165eee2
View code at this point
Browse repository at this point
Miscellaneous refactorings
Show description for d84ec22
rhettinger
committed
d84ec22
View commit details
Copy full SHA for d84ec22
View code at this point
Browse repository at this point
Commits on Jan 1, 2016
merge 3.5
benjaminp
committed
3e47a13
View commit details
Copy full SHA for 3e47a13
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL