summaryrefslogtreecommitdiff
path: root/Objects/namespaceobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-101-9/+9
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-101-1/+1
* bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909)Serhiy Storchaka2017-10-071-1/+5
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-191-9/+3
* use c++ style commentsBenjamin Peterson2016-09-071-4/+4
* Issue #24257: Fixed incorrect uses of PyObject_IsInstance().Serhiy Storchaka2015-05-221-4/+3
* Don't use deprecated function PyUnicode_GET_SIZE()Victor Stinner2013-11-131-1/+1
* Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-1/+1
* Issue #9566: Fix a compiler warning on Windows 64-bit in namespace_init()Victor Stinner2013-06-051-1/+1
* Issue #15022: Ensure all pickle protocols are supported.Eric Snow2013-02-161-1/+24
* Issue #15022: Add pickle and comparison support to types.SimpleNamespace.Eric Snow2013-02-161-9/+24
* Close #16160: Subclass support now works for types.SimpleNamespace. Thanks t...Eric Snow2012-10-161-12/+12
* Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-031-0/+225