summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/set.rst
Commit message (Collapse)AuthorAgeFilesLines
* Ensure that PySet_Add() operates on a newly created frozenset, like ↵Amaury Forgeot d'Arc2008-02-031-0/+7
| | | | | | | | PyTuple_SetItem does. Add PyFrozenSet_Check(), which was not needed before; The list of Py*Set_Check* macros seems to be complete now. Add missing NEWS entries about all this.
* Factor-out common code with a new macroRaymond Hettinger2008-01-281-0/+6
|
* Make PySet_Add() work with frozensets.Raymond Hettinger2008-01-281-3/+13
| | | | | Works like PyTuple_SetItem() to build-up values in a brand new frozenset. Also, PyFrozenSet_New() is now guaranteed to produce a distinct new frozenset.
* Revert PySet_Add() changes.Raymond Hettinger2008-01-261-8/+3
|
* Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to ↵Raymond Hettinger2008-01-261-3/+8
| | | | build-up values in a brand new frozenset.
* Split the monstrous C API manual files in smaller parts.Georg Brandl2008-01-191-0/+148