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
/
Lib
/
functools.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Removed redundant call of update_wrapper().
Serhiy Storchaka
2015-10-24
1
-1/+1
*
Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses.
Yury Selivanov
2015-08-18
1
-1/+1
*
Backed out changeset: b0a0b9b59012
Serhiy Storchaka
2015-05-24
1
-99/+108
*
Backed out changeset 57776eee74f2
Larry Hastings
2015-05-23
1
-108/+99
*
Issue #14373: Added C implementation of functools.lru_cache(). Based on
Serhiy Storchaka
2015-05-23
1
-99/+108
*
Issue #16261: Converted some bare except statements to except statements
Serhiy Storchaka
2015-05-20
1
-1/+1
*
Reduce the overhead in functools.total_ordering by localizing NotImplemented.
Raymond Hettinger
2015-05-13
1
-12/+12
*
Issue #7830: Flatten nested functools.partial.
Alexander Belopolsky
2015-03-01
1
-0/+8
*
Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
Serhiy Storchaka
2015-01-31
1
-2/+0
*
No need to rebuild a constant dictionary on every call. Move convert mapping...
Raymond Hettinger
2015-01-14
1
-16/+17
*
Minor speed-up. Use local variable instead of a global lookup.
Raymond Hettinger
2015-01-07
1
-10/+10
*
merge
Raymond Hettinger
2015-01-06
1
-76/+81
|
\
|
*
Issue #23132: Mitigate regression in speed and clarity in functools.total_ord...
Raymond Hettinger
2015-01-06
1
-64/+78
*
|
Issue #23132: Improve performance and introspection support of comparison
Serhiy Storchaka
2015-01-01
1
-41/+50
*
|
merge
Raymond Hettinger
2014-08-12
1
-0/+6
|
\
\
|
|
/
|
*
Issue 22184: Early detection and reporting of missing lru_cache parameters
Raymond Hettinger
2014-08-12
1
-0/+6
*
|
Issue #22032: __qualname__ instead of __name__ is now always used to format
Serhiy Storchaka
2014-07-22
1
-1/+1
|
/
*
Issue #20976: pyflakes: Remove unused imports
Victor Stinner
2014-03-20
1
-1/+1
*
inspect.signature: Add support for 'functools.partialmethod' #20223
Yury Selivanov
2014-01-27
1
-0/+1
*
Fix functools.partialmethod docs and __all__
Nick Coghlan
2013-11-04
1
-1/+1
*
Issue #4331: Added functools.partialmethod
Nick Coghlan
2013-11-03
1
-2/+76
*
Close #10042: functools.total_ordering now handles NotImplemented
Nick Coghlan
2013-10-01
1
-12/+82
*
Close issue 17482: don't overwrite __wrapped__
Nick Coghlan
2013-07-15
1
-1/+3
*
Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)
Brett Cannon
2013-07-04
1
-3/+3
*
Issue #18244: Adopt C3-based linearization in functools.singledispatch for im...
Łukasz Langa
2013-07-01
1
-43/+135
*
Issue #18200: Update the stdlib (except tests) to use
Brett Cannon
2013-06-14
1
-3/+3
*
Add reference implementation for PEP 443
Łukasz Langa
2013-06-05
1
-4/+124
*
merge
Raymond Hettinger
2013-03-09
1
-2/+2
|
\
|
*
Sync-up with 3.4 to make maintenance easier.
Raymond Hettinger
2013-03-09
1
-9/+7
*
|
merge
Raymond Hettinger
2013-03-09
1
-12/+35
|
\
\
|
|
/
|
*
Improve comments and variable names.
Raymond Hettinger
2013-03-09
1
-14/+37
*
|
Merge
Raymond Hettinger
2013-03-04
1
-1/+1
|
\
\
|
|
/
|
*
Another nit.
Raymond Hettinger
2013-03-04
1
-1/+1
*
|
merge
Raymond Hettinger
2013-03-04
1
-7/+11
|
\
\
|
|
/
|
*
Fix other re-entrancy nits for the lru_cache.
Raymond Hettinger
2013-03-04
1
-7/+11
*
|
Merge
Raymond Hettinger
2013-03-02
1
-1/+4
|
\
\
|
|
/
|
*
Remove dependency on dummy_threading (to solve a bootstrap problem).
Raymond Hettinger
2013-03-02
1
-1/+4
*
|
Merge
Raymond Hettinger
2013-03-01
1
-3/+3
|
\
\
|
|
/
|
*
Don't deadlock on a reentrant call.
Raymond Hettinger
2013-03-01
1
-3/+3
*
|
Eliminate unnecessary variable.
Raymond Hettinger
2013-02-17
1
-10/+7
*
|
Issue #12428: Add a pure Python implementation of functools.partial().
Antoine Pitrou
2012-11-13
1
-1/+27
|
/
*
Separate key creation logic from the sequence class that memoizes its hash va...
Raymond Hettinger
2012-06-04
1
-19/+24
*
Minor change to default lru size. Set default to a power of two.
Raymond Hettinger
2012-05-20
1
-1/+1
*
Move make_key() out of the decorator body. Make keys that only need to be has...
Raymond Hettinger
2012-05-01
1
-17/+27
*
Use a flag to indicate when the circular queue is fully populated and stable.
Raymond Hettinger
2012-05-01
1
-9/+12
*
Handle a possible race condition
Raymond Hettinger
2012-04-30
1
-0/+6
*
Track the cache size directly.
Raymond Hettinger
2012-04-30
1
-10/+11
*
Factor out shared variables.
Raymond Hettinger
2012-04-29
1
-4/+6
*
Flatten the lru cache keyword args tuple for better memory utilization.
Raymond Hettinger
2012-04-29
1
-1/+3
*
Fix-up a comment
Raymond Hettinger
2012-03-31
1
-3/+2
[next]