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
/
Doc
/
reference
/
datamodel.rst
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)
Jeroen Demeyer
2019-09-10
1
-2/+4
*
bpo-36743: __get__ is sometimes called without the owner argument (#12992)
Raymond Hettinger
2019-08-29
1
-7/+18
*
bpo-15542: Documentation incorrectly suggests __init__ called after direct _...
Joannah Nanjekye
2019-08-26
1
-4/+4
*
bpo-29535: Remove promize about hash randomization of datetime objects. (GH-1...
Serhiy Storchaka
2019-08-24
1
-2/+2
*
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
Serhiy Storchaka
2019-06-01
1
-5/+3
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-17/+19
*
Use more PEP 570 syntax in the documentation. (GH-13720)
Serhiy Storchaka
2019-06-01
1
-1/+1
*
Update data model docs to include missing attributes for code objects (GH-13696)
Pablo Galindo
2019-05-31
1
-12/+17
*
bpo-36166: Change to rst datamodel file. (GH-13089)
Catherine Alvarado
2019-05-04
1
-2/+2
*
Improve grammar on async context managers and shorten text (GH-12379)
Andre Delfino
2019-05-03
1
-4/+4
*
Doc: Fixed missing punctuation in datamodel.rst (GH-12581)
Jules Lasne (jlasne)
2019-03-27
1
-14/+14
*
closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169)
Martijn Pieters
2019-03-05
1
-6/+0
*
Document other performance implication for __slots__ (GH-11974)
Raymond Hettinger
2019-02-21
1
-0/+1
*
bpo-35911: add cell constructor (GH-11771)
Pierre Glaser
2019-02-07
1
-1/+3
*
bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)
Serhiy Storchaka
2018-12-19
1
-4/+4
*
Move __missing__ after __delitem__ in Data model. (GH-10923)
Andre Delfino
2018-12-05
1
-8/+8
*
Fix outdated info in datamodel about dicts (GH-9807)
wim glenn
2018-11-16
1
-2/+2
*
bpo-33816: Remove outdated metaclass example (GH-7566)
Andrés Delfino
2018-11-16
1
-34/+2
*
bpo-35119: Fix RecursionError in example of customizing module attribute acce...
Denis Osipov
2018-11-06
1
-1/+1
*
bpo-35054: Add yet more index entries for symbols. (GH-10121)
Serhiy Storchaka
2018-10-28
1
-1/+1
*
bpo-35054: Add more index entries for symbols. (GH-10064)
Serhiy Storchaka
2018-10-26
1
-3/+6
*
Fix HTML formatting in datamodel.rst (GH-8693)
Berker Peksag
2018-08-06
1
-3/+3
*
Fix typo in datamodel.rst (GH-6964)
Zach Mitchell
2018-06-02
1
-1/+1
*
bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931)
Serhiy Storchaka
2018-05-20
1
-2/+1
*
bpo-23722: Fix docs for future __classcell__ changes. (GH-6999)
Serhiy Storchaka
2018-05-20
1
-1/+1
*
bpo-32717: Document PEP 560 (GH-6726)
Ivan Levkivskyi
2018-05-08
1
-0/+37
*
bpo-26701: Improve documentation for the rounding special methods. (#6054)
Serhiy Storchaka
2018-03-10
1
-12/+18
*
bpo-26701: Add documentation for __trunc__ (GH-6022)
Eric Appelt
2018-03-10
1
-0/+9
*
bpo-30579: Docs for dynamic traceback creation (GH-5653)
Nick Coghlan
2018-02-13
1
-12/+34
*
bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-4...
Cheryl Sabella
2018-02-05
1
-4/+6
*
bpo-27505: Add change notes in module attribute docs (GH-5320)
Cheryl Sabella
2018-01-27
1
-0/+11
*
bpo-32377: improve __del__ docs and fix mention about resurrection (#4927)
Antoine Pitrou
2017-12-19
1
-39/+47
*
bpo-32225: Implementation of PEP 562 (#4731)
Ivan Levkivskyi
2017-12-14
1
-0/+45
*
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Yury Selivanov
2017-10-06
1
-44/+9
*
Mention enum as an ex (#2982)
Louie Lu
2017-09-13
1
-2/+2
*
bpo-31344: Per-frame control of trace events (GH-3417)
Nick Coghlan
2017-09-08
1
-1/+11
*
bpo-30486: Allow setting cell value (#1840)
Lisa Roach
2017-06-08
1
-0/+6
*
bpo-30449 Terse slots (#1819)
Aaron Hall, MBA
2017-05-26
1
-14/+15
*
bpo-30354: Update data model documentation for super() (GH-1561)
csabella
2017-05-15
1
-6/+6
*
bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506)
Serhiy Storchaka
2017-05-13
1
-0/+4
*
bpo-29679: Implement @contextlib.asynccontextmanager (#360)
Jelle Zijlstra
2017-05-01
1
-0/+2
*
bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271)
csabella
2017-04-26
1
-8/+8
*
bpo-30144: Import collections ABC from collections.abc rather than collection...
Serhiy Storchaka
2017-04-24
1
-3/+3
*
bpo-15718: Document the upper bound constrain on the __len__ return value. (#...
Serhiy Storchaka
2017-04-23
1
-0/+9
*
Issue #29012: Merge from 3.5
Berker Peksag
2017-01-03
1
-5/+4
|
\
|
*
Issue #29012: Remove another outdated information
Berker Peksag
2017-01-03
1
-3/+3
*
|
Issue #29012: Merge from 3.5
Berker Peksag
2017-01-02
1
-1/+1
|
\
\
|
|
/
|
*
Issue #29012: Remove outdated information about __bases__
Berker Peksag
2017-01-02
1
-1/+1
*
|
Merge 3.5
Victor Stinner
2016-12-19
1
-5/+8
|
\
\
|
|
/
|
*
doc: Suggest to hash(tuple of attr) rather than XOR
Victor Stinner
2016-12-19
1
-5/+8
[prev]
[next]