Serhiy Storchaka
|
e042a4553e
|
Do not use explicit inheritance from object in the documentation. (GH-13936)
|
2019-06-10 13:35:52 +03:00 |
Serhiy Storchaka
|
70c5f2ae6e
|
Use more PEP 570 syntax in the documentation. (GH-13720)
|
2019-06-01 11:38:24 +03:00 |
Serhiy Storchaka
|
2085bd0877
|
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
|
2019-06-01 11:00:15 +03:00 |
Raymond Hettinger
|
b821868e6d
|
bpo-36772 Allow lru_cache to be used as decorator without making a function call (GH-13048)
|
2019-05-26 11:27:35 -07:00 |
Inada Naoki
|
bc284f0c7a
|
bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580)
|
2019-03-27 18:15:17 +09:00 |
Raymond Hettinger
|
f0e0f2008d
|
bpo-35300: Add usage note to the lru_cache() docs (GH-10707)
https://bugs.python.org/issue35300
|
2018-11-25 16:24:52 -08:00 |
Andrei Petre
|
83a07652e0
|
bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH-9809)
|
2018-10-23 14:11:20 +08:00 |
Sergey Fedoseev
|
b981fec8d6
|
Use dict unpacking in functools.partial() docs (GH-9412)
|
2018-10-19 23:42:07 +02:00 |
Brendan Jurd
|
9df100286b
|
Fix name of argument in docs for functools.reduce(). (#9634)
|
2018-09-30 23:52:10 -07:00 |
Raymond Hettinger
|
902bcd9a1e
|
Note that distinct argument patterns can be cached separately (GH-9298)
|
2018-09-14 00:53:20 -07:00 |
Carl Meyer
|
d658deac60
|
bpo-21145: Add cached_property decorator in functools (#6982)
Robust caching of calculated properties is
harder than it looks at first glance, so add
a solid, well-tested implementation to the
standard library.
|
2018-08-28 17:11:56 +10:00 |
Gerrit Holl
|
bd81cbd584
|
DOC: In `reduce`, refer to `accumulate` (GH-7930)
|
2018-07-04 15:26:32 -07:00 |
Ethan Smith
|
c651275afe
|
bpo-32380: Create functools.singledispatchmethod (#6306)
|
2018-05-26 13:38:33 -07:00 |
Łukasz Langa
|
e56975351b
|
bpo-32227: functools.singledispatch supports registering via type annotations (#4733)
|
2017-12-11 13:56:31 -08:00 |
Daisuke Miyakawa
|
0e61e67a57
|
bpo-31567: add or fix decorator markup in docs (#3959)
|
2017-10-12 10:39:43 -04:00 |
Serhiy Storchaka
|
4adf01caae
|
Issue #19795: Improved more markups of True/False.
|
2016-10-19 18:30:05 +03:00 |
Serhiy Storchaka
|
ecf41da83e
|
Issue #19795: Mark up None as literal text.
|
2016-10-19 16:29:26 +03:00 |
Martin Panter
|
bae5d81f5d
|
Issue #24314: Fix doc links for general attributes like __name__, __dict__
|
2016-06-18 03:57:31 +00:00 |
Martin Panter
|
0c0da48aed
|
Issue #24136: Document generalized unpacking, PEP 448
Based on patches by Konstantin Molchanov and Neil Girdhar.
|
2016-06-12 01:46:50 +00:00 |
Terry Jan Reedy
|
fa089b9b0b
|
Issue #22558: Add remaining doc links to source code for Python-coded modules.
Reformat header above separator line (added if missing) to a common format.
Patch by Yoni Lavi.
|
2016-06-11 15:02:54 -04:00 |
Berker Peksag
|
472233ec83
|
Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs
Patch by Xiang Zhang.
|
2016-04-18 21:20:50 +03:00 |
Georg Brandl
|
5d94134040
|
Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
|
2016-02-26 19:37:12 +01:00 |
Raymond Hettinger
|
558dcf38e6
|
Issue #23049: Pure python equivalent shouldn't imply more exactitude than is really there.
|
2014-12-16 18:16:57 -08:00 |
Raymond Hettinger
|
86e9b6b164
|
Issue 22830: Clarify docs for functools.cmp_to_key().
|
2014-11-09 17:20:56 -08:00 |
Georg Brandl
|
525d355984
|
Fixing broken links in doc, part 3: the rest
|
2014-10-29 10:26:56 +01:00 |
Ezio Melotti
|
67f6d5f4d0
|
#21928: clarify functools.wraps docs.
|
2014-08-05 08:14:28 +03:00 |
Benjamin Peterson
|
3a4340325b
|
make partialmethod example work (closes #21105)
|
2014-03-30 15:07:09 -04:00 |
Nick Coghlan
|
3daaf5f89d
|
Fix functools.partialmethod docs and __all__
|
2013-11-04 23:32:16 +10:00 |
Nick Coghlan
|
f4cb48a72b
|
Issue #4331: Added functools.partialmethod
Initial patch by Alon Horev
|
2013-11-03 16:41:46 +10:00 |
Raymond Hettinger
|
84fc7081f5
|
merge
|
2013-10-12 16:04:39 -07:00 |
Raymond Hettinger
|
64801680d3
|
Issue #19202: Add cross-reference and a rough code equivalent
|
2013-10-12 16:04:17 -07:00 |
Nick Coghlan
|
f05d981f58
|
Close #10042: functools.total_ordering now handles NotImplemented
(Patch by Katie Miller)
|
2013-10-02 00:02:03 +10:00 |
Nick Coghlan
|
24c05bc154
|
Close issue 17482: don't overwrite __wrapped__
|
2013-07-15 21:13:08 +10:00 |
Łukasz Langa
|
fdcf2b7d4e
|
moved the single-dispatch generic function definitions to the glossary
|
2013-06-07 22:54:03 +02:00 |
Łukasz Langa
|
6f69251980
|
Add reference implementation for PEP 443
PEP accepted: http://mail.python.org/pipermail/python-dev/2013-June/126734.html
|
2013-06-05 12:20:24 +02:00 |
Raymond Hettinger
|
17328e4fae
|
Clean-up lru_cache examples. The print() not is needed. Set maxsize to a power of two.
|
2013-04-06 20:27:33 -07:00 |
Raymond Hettinger
|
7d74effc67
|
Add usage note.
|
2012-06-04 00:32:15 -07:00 |
Raymond Hettinger
|
010ce3283a
|
Minor change to default lru size. Set default to a power of two.
|
2012-05-19 21:20:48 -07:00 |
Georg Brandl
|
b0f30c9891
|
merge with 3.2
|
2012-01-25 22:36:43 +01:00 |
Georg Brandl
|
6c89a79d55
|
#13852: some small doc fixes.
|
2012-01-25 22:36:25 +01:00 |
Georg Brandl
|
5b45a013bc
|
merge from 3.2
|
2012-01-23 20:19:46 +01:00 |
Georg Brandl
|
3b65fd7e97
|
#13816: fix two minor style issues. Thanks to Justin Wehnes for the patch.
|
2012-01-23 20:19:33 +01:00 |
Ezio Melotti
|
37c7a065ce
|
#13695: merge with 3.2.
|
2012-01-16 08:29:42 +02:00 |
Ezio Melotti
|
9ecb6beb8c
|
#13695: fix a couple of typos in the doc.
|
2012-01-16 08:28:54 +02:00 |
Raymond Hettinger
|
cd9fdfd652
|
Issue 13227: Option to make the lru_cache() type specific (suggested by Andrew Koenig).
|
2011-10-20 08:57:45 -07:00 |
Raymond Hettinger
|
05ce079a1c
|
Missed two source links
|
2011-01-10 21:16:07 +00:00 |
Raymond Hettinger
|
c79fb0e52d
|
Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None.
|
2010-12-01 03:45:41 +00:00 |
Raymond Hettinger
|
00f2f97dbd
|
Doc and docstring nits.
|
2010-12-01 00:47:56 +00:00 |
Raymond Hettinger
|
cc03858d8f
|
Documentation nits.
|
2010-11-30 20:02:57 +00:00 |
Raymond Hettinger
|
7496b4171e
|
Add example, tighten text, and minor clean-ups.
|
2010-11-30 19:15:45 +00:00 |