summaryrefslogtreecommitdiff
path: root/Objects/structseq.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36365: Fix compiler warning in structseq.c (GH-12451)Victor Stinner2019-03-201-4/+10
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)Serhiy Storchaka2017-03-191-8/+16
* Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef,Serhiy Storchaka2016-11-221-1/+1
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-1/+1
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-3/+3
* Issue #15989: Fixed some scarcely probable integer overflows.Serhiy Storchaka2015-09-061-12/+12
* Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-10/+27
* Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failureVictor Stinner2013-07-171-11/+13
* Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in stru...Victor Stinner2013-07-171-5/+20
* Check for NULL return value in PyStructSequence_NewType(). Found by Coverity.Stefan Krah2012-08-191-1/+3
* Fix indentationAntoine Pitrou2012-02-151-12/+12
* Issue #13020: Fix a reference leak when allocating a structsequence object fa...Antoine Pitrou2012-02-151-0/+1
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+20
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* fix repr of complicated structseqs #9206Benjamin Peterson2010-07-081-2/+20
* make struct sequences subclass tuple; kill lots of codeBenjamin Peterson2010-07-071-207/+18
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-411/+411
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 66006 via svnmerge fromNeal Norwitz2008-08-241-6/+14
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-141-5/+77
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-6/+6
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-6/+6
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-1/+1
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-1/+54
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-9/+8
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+9
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-1/+1
* Revert 42400.Martin v. Löwis2006-02-161-3/+3
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-3/+3
* Get rid of compiler warnings (gcc 3.3.4 on x86)Neal Norwitz2006-02-161-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-14/+14
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-011-1/+0
* SF # 654974, fix unchecked return values in structseqNeal Norwitz2002-12-181-2/+6
* Add n_unnamed_fields into the type.Martin v. Löwis2002-10-161-5/+15
* Add PyStructSequence_UnnamedField. Add stat_float_times.Martin v. Löwis2002-10-161-10/+19
* Remove PyMalloc_New and PyMalloc_Del.Neil Schemenauer2002-04-121-2/+2
* Use pymalloc if it's enabled.Neil Schemenauer2002-03-221-2/+2
* Guido pointed out that I was missing a couple decrefs.Michael W. Hudson2002-03-071-1/+7
* Apply (my) patch:Michael W. Hudson2002-03-061-23/+76
* A fix & test forMichael W. Hudson2002-03-051-1/+30
* structseq_new(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-1/+2
* Fix bad bug in structseq slicing (NULL pointers in result). Reported byTim Peters2001-10-301-1/+1
* Missing file structseq.c for SF patch #462296Guido van Rossum2001-10-181-0/+284