COMMITS
/ Objects/structseq.c April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
March 19, 2017
S
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka committed
November 22, 2016
S
Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef,
Serhiy Storchaka committed
November 20, 2016
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
S
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka committed
September 6, 2015
S
Issue #15989: Fixed some scarcely probable integer overflows.
Serhiy Storchaka committed
July 22, 2013
V
Issue #18520: Add a new PyStructSequence_InitType2() function, same than
Victor Stinner committed
July 17, 2013
V
Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failure
Victor Stinner committed
July 16, 2013
V
Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c
Victor Stinner committed
August 19, 2012
S
Check for NULL return value in PyStructSequence_NewType(). Found by Coverity.
Stefan Krah committed
February 15, 2012
A
Fix indentation
Antoine Pitrou committed
A
Issue #13020: Fix a reference leak when allocating a structsequence object fails.
Antoine Pitrou committed
December 3, 2010
M
Merge branches/pep-0384.
Martin v. Löwis committed
November 30, 2010
G
Include structseq.h in Python.h, and remove now-redundant includes in individual sources.
Georg Brandl committed
July 8, 2010
B
fix repr of complicated structseqs #9206
Benjamin Peterson committed
July 7, 2010
B
make struct sequences subclass tuple; kill lots of code
Benjamin Peterson committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
August 24, 2008
N
Merged revisions 66006 via svnmerge from
Neal Norwitz committed
August 7, 2008
M
Rename PyUnicode_AsString -> _PyUnicode_AsString and
Marc-André Lemburg committed
January 14, 2008
C
Merged revisions 59933-59951 via svnmerge from
Christian Heimes committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
August 30, 2007
T
Remove the simple slicing API. All slicing is now done with slice objects.
Thomas Wouters committed
August 28, 2007
T
Merge the trunk changes in. Breaks socket.ssl for now.
Thomas Wouters committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
February 27, 2006
M
Revert backwards-incompatible const changes.
Martin v. Löwis committed
February 16, 2006
M
Use Py_ssize_t for counts and sizes.
Martin v. Löwis committed
M
Revert 42400.
Martin v. Löwis committed
M
Support %zd in PyErr_Format and PyString_FromFormat.
Martin v. Löwis committed
N
Get rid of compiler warnings (gcc 3.3.4 on x86)
Neal Norwitz committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
February 1, 2003
T
Removed all uses of the out-of-favor __safe_for_unpickling__ magic
Tim Peters committed
December 18, 2002
N
SF # 654974, fix unchecked return values in structseq
Neal Norwitz committed
October 16, 2002
M
Add n_unnamed_fields into the type.
Martin v. Löwis committed
M
Add PyStructSequence_UnnamedField. Add stat_float_times.
Martin v. Löwis committed
April 12, 2002
N
Remove PyMalloc_New and PyMalloc_Del.
Neil Schemenauer committed
March 22, 2002
N
Use pymalloc if it's enabled.
Neil Schemenauer committed
March 7, 2002
M
Guido pointed out that I was missing a couple decrefs.
Michael W. Hudson committed
March 6, 2002
M
Apply (my) patch:
Michael W. Hudson committed
March 5, 2002
M
A fix & test for
Michael W. Hudson committed
November 28, 2001
B
structseq_new(): Conversion of sprintf() to PyOS_snprintf() for buffer
Barry Warsaw committed
October 30, 2001
T
Fix bad bug in structseq slicing (NULL pointers in result). Reported by
Tim Peters committed
October 18, 2001
G
Missing file structseq.c for SF patch #462296
Guido van Rossum committed