1. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  2. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 21 years ago
  3. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 21 years ago
  4. 960bc54 (Most of) SF patch 601369 (Christos Georgiou): obmalloc,structmodule: by Guido van Rossum · 22 years ago
  5. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  6. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  7. 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 22 years ago
  8. 2eeec9b Fix typo. by Fred Drake · 22 years ago
  9. 78f6c86 Use PyModule_AddObject() instead of accessing the module dict directly. by Fred Drake · 22 years ago
  10. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  11. 0891ac0 The 'p' (Pascal string) pack code acts unreasonably when the string size by Tim Peters · 23 years ago
  12. 3dac559 SF bug #442520: test_struct fails on SPARC. by Tim Peters · 23 years ago
  13. da9c5b3 The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL. by Tim Peters · 23 years ago
  14. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  15. 2d4e077 Trimmed trailing whitespace. by Tim Peters · 23 years ago
  16. 3023f78 Simplify some convolution by simply not recognizing 'q' and 'Q' at all by Tim Peters · 23 years ago
  17. be80085 Make clear in the docstring that "std" applies to both size and alignment, by Tim Peters · 23 years ago
  18. 7b9542a Initial support for 'q' and 'Q' struct format codes: for now, only in by Tim Peters · 23 years ago
  19. f0e717b Repair portability of sign extension when reading signed ints on boxes by Tim Peters · 23 years ago
  20. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  21. 2af72d5 Use symbolic constants for allowable short ranges. by Martin v. Löwis · 24 years ago
  22. 66de549 Check range for bytes and shorts. Closes bug #110845. by Martin v. Löwis · 24 years ago
  23. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  24. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  25. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  26. 41c36ff ANSI-fication by Peter Schneider-Kamp · 24 years ago
  27. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  28. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  29. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  30. 137507e Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  31. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  32. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  33. 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
  34. 39ef227 Unsigned 1 and 2 byte sized formats shouldn't result in long integer values! by Guido van Rossum · 26 years ago
  35. d3dbb38 get_long(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...). by Fred Drake · 26 years ago
  36. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  37. 9897f0f Oops, left in a non-standard multi-line doc string that GCC finds okay by Guido van Rossum · 27 years ago
  38. 414fd48 Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit). by Guido van Rossum · 27 years ago
  39. 8f3c812 Fix due to Bill Noon for problem discovered by Ken Manheimer: packing by Guido van Rossum · 27 years ago
  40. 0cb96de Apply two changes, systematically: by Guido van Rossum · 27 years ago
  41. 9eb671f Contribution by Hannu Krosing (with some changes). by Guido van Rossum · 27 years ago
  42. e20aef5 Ignore whitespace between formats (not internal to a count+format). by Guido van Rossum · 27 years ago
  43. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  44. 6c87eca Changed the ``add/sub_offset'' hacks for dealing with C's unsigned by Guido van Rossum · 28 years ago
  45. b9d338c Fill pad bytes with zeros (fixing a bug dating from the very first version!). by Guido van Rossum · 28 years ago
  46. b9a781e Scratch the ears of gcc -Wall. by Barry Warsaw · 28 years ago
  47. 4ccc531 Ok, ok, I've fixed gradual underflow on packing too. by Guido van Rossum · 28 years ago
  48. 07ef655 Oops -- unpack float/double didn't do the right thing if e==0. by Guido van Rossum · 28 years ago
  49. 74679b4 Support float and double in non-native formats. by Guido van Rossum · 28 years ago
  50. 60c5061 Added better handling of unsigned longs -- a Python long returned by by Guido van Rossum · 28 years ago
  51. 3aa27fd Fix the first bugs... treatment of 0 count was wrong, and memchr() by Guido van Rossum · 28 years ago
  52. f7e6b4b Pretty much rewritten to fulfull several long-standing wishes: by Guido van Rossum · 28 years ago
  53. 30695fa Renamed. by Barry Warsaw · 28 years ago
  54. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  55. 971e1df Quick hack so PowerPC macs can access system structures by Jack Jansen · 29 years ago
  56. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  57. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  58. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  59. 90ddb7b unpack() now returns a tuple, not a list by Guido van Rossum · 32 years ago
  60. 0297512 struct: pack/unpack binary structs; fcntl: fcntl(), ioctl(). by Guido van Rossum · 32 years ago