summaryrefslogtreecommitdiffstats
path: root/Modules/structmodule.c
Commit message (Expand)AuthorAgeFilesLines
* (Most of) SF patch 601369 (Christos Georgiou): obmalloc,structmodule:Guido van Rossum2002-09-031-27/+54
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-16/+15
* Get rid of more PyArg_Parse & METH_OLDARGS.Neal Norwitz2002-04-021-1/+2
* Fix typo.Fred Drake2002-02-141-1/+1
* Use PyModule_AddObject() instead of accessing the module dict directly.Fred Drake2002-02-141-6/+8
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-13/+13
* The 'p' (Pascal string) pack code acts unreasonably when the string sizeTim Peters2001-09-151-0/+2
* SF bug #442520: test_struct fails on SPARC.Tim Peters2001-07-181-4/+10
* The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL.Tim Peters2001-06-131-0/+8
* Added q/Q standard (x-platform 8-byte ints) mode in struct module.Tim Peters2001-06-121-55/+137
* Trimmed trailing whitespace.Tim Peters2001-06-111-3/+3
* Simplify some convolution by simply not recognizing 'q' and 'Q' at allTim Peters2001-06-111-33/+0
* Make clear in the docstring that "std" applies to both size and alignment,Tim Peters2001-06-111-6/+6
* Initial support for 'q' and 'Q' struct format codes: for now, only inTim Peters2001-06-101-1/+186
* Repair portability of sign extension when reading signed ints on boxesTim Peters2001-04-081-10/+6
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-1/+0
* Use symbolic constants for allowable short ranges.Martin v. Löwis2000-09-151-4/+7
* Check range for bytes and shorts. Closes bug #110845.Martin v. Löwis2000-09-151-2/+42
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-173/+57
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-5/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2000-06-011-1/+2
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-2/+2
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Patches from Greg Stein to support 'P' format in struct module'sGuido van Rossum1998-09-181-0/+31
* Unsigned 1 and 2 byte sized formats shouldn't result in long integer values!Guido van Rossum1998-06-291-2/+8
* get_long(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...).Fred Drake1998-05-281-1/+1
* Make new gcc -Wall happyGuido van Rossum1998-04-101-3/+3
* Oops, left in a non-standard multi-line doc string that GCC finds okayGuido van Rossum1997-12-211-4/+4
* Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit).Guido van Rossum1997-12-191-7/+41
* Fix due to Bill Noon for problem discovered by Ken Manheimer: packingGuido van Rossum1997-11-041-2/+2
* Apply two changes, systematically:Guido van Rossum1997-10-011-5/+3
* Contribution by Hannu Krosing (with some changes).Guido van Rossum1997-09-051-0/+38
* Ignore whitespace between formats (not internal to a count+format).Guido van Rossum1997-08-261-0/+7
* Keep Microsoft VC happy.Guido van Rossum1997-04-111-8/+8
* Changed the ``add/sub_offset'' hacks for dealing with C's unsignedGuido van Rossum1997-01-031-112/+14
* Fill pad bytes with zeros (fixing a bug dating from the very first version!).Guido van Rossum1997-01-031-2/+5
* Scratch the ears of gcc -Wall.Barry Warsaw1997-01-031-1/+1
* Ok, ok, I've fixed gradual underflow on packing too.Guido van Rossum1997-01-021-45/+47
* Oops -- unpack float/double didn't do the right thing if e==0.Guido van Rossum1997-01-021-4/+14
* Support float and double in non-native formats.Guido van Rossum1997-01-021-2/+365
* Added better handling of unsigned longs -- a Python long returned byGuido van Rossum1996-12-311-27/+163
* Fix the first bugs... treatment of 0 count was wrong, and memchr()Guido van Rossum1996-12-311-6/+6
* Pretty much rewritten to fulfull several long-standing wishes:Guido van Rossum1996-12-311-226/+572
* Renamed.Barry Warsaw1996-12-121-82/+88