1. 6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred by Victor Stinner · 14 years ago
  2. a093d0d Issue #8992: Simplify addcleanup() API by Victor Stinner · 14 years ago
  3. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  4. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  5. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  6. 8182b71 Issue #8991: convertbuffer() rejects discontigious buffers by Victor Stinner · 14 years ago
  7. 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 14 years ago
  8. 21e0948 getbuffer(): release the buffer on error (if the buffer is not contiguous) by Victor Stinner · 14 years ago
  9. 3c9e6e9 PyArg_Parse*() functions: factorize code for s/z and u/Z formats by Victor Stinner · 14 years ago
  10. 4aae1eb Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes by Victor Stinner · 14 years ago
  11. 510b622 getargs.c: remove last reference to "t#" format by Victor Stinner · 14 years ago
  12. 06e49dd Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z" by Victor Stinner · 14 years ago
  13. c730131 Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs, by Mark Dickinson · 14 years ago
  14. 3dcb5ac Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format by Victor Stinner · 14 years ago
  15. 5216e6d PyArg_Parse*("Z#") raises an error for unknown type by Victor Stinner · 14 years ago
  16. 2872e5b convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failure by Victor Stinner · 14 years ago
  17. 5cb6239 Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULL by Victor Stinner · 14 years ago
  18. 43fb009 Remove dead code by Victor Stinner · 14 years ago
  19. 33109a1 Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is no by Victor Stinner · 14 years ago
  20. 93b5513 Issue #6697: Fix a crash if a keyword contains a surrogate by Victor Stinner · 14 years ago
  21. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  22. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  23. f96b784 Merged revisions 79837 via svnmerge from by Antoine Pitrou · 14 years ago
  24. de60401 Merged revisions 77218 via svnmerge from by Mark Dickinson · 15 years ago
  25. f08173b Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. This by Mark Dickinson · 15 years ago
  26. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  27. 642d96a - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with by Sean Reifscheider · 15 years ago
  28. c15bdef Issue #6012: Add cleanup support to O& argument parsing. by Martin v. Löwis · 15 years ago
  29. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  30. ef3e4c2 Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from by Benjamin Peterson · 15 years ago
  31. 7fe9853 make 'c' only accept bytes and 'C' only unicode #5499 by Benjamin Peterson · 15 years ago
  32. 9203501 Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,67923-67924,67926-67927,67930,67943 via svnmerge from by Benjamin Peterson · 16 years ago
  33. 81d90a2 string -> bytes in error message #4745 by Benjamin Peterson · 16 years ago
  34. f7199578 #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an by Antoine Pitrou · 16 years ago
  35. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  36. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  37. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  38. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  39. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  40. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  41. d8b690f #2895: don't crash with bytes as keyword argument names. by Georg Brandl · 16 years ago
  42. 0740459 #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unicode strings by Amaury Forgeot d'Arc · 16 years ago
  43. bcd2c08 Fixed a memory leak introduced in r62462 by Christian Heimes · 16 years ago
  44. 3513358 Issue 2440: remove the guard around the handling of case 'n' in getargs.c's convertsimple() such that we always treat it as an index type, regardless of whether or not sizeof(size_t) == sizeof(long). Fix the test_args2.Signed_TestCase.test_n() such that it tests for adherence to PEP 357 (don't try and coerce objects that don't have nb_index slots but do have nb_int slots (i.e. floats) into indexes 'just because we can'). Three other commits are related to this one: r62269 and r62279, which were changes to PyNumber_Index (among other things) to check for nb_int slots when we lack nb_index slots -- and r62292, which is when I reverted these changes after various people pointed out that the test was in fact wrong, not the code. by Trent Nelson · 16 years ago
  45. 7179220 Issue 2440: revert r62269 and r62279. These changes were made in an effort to fix test_args2.Signed_TestCase.test_n(), which was failing on Windows x64 on the following line: 'self.failUnlessEqual(99, getargs_n(Long()))'. Although the two commits *did* fix the test on Windows x64, it's become clear that it's the test that's incorrect, and the changes to PyNumber_Index() in particular were not warranted (and actually violate PEP 357). This commit will get us back to where we were at r62268, before I started butchering things. by Trent Nelson · 16 years ago
  46. e2ae468 Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), extend Objects/abstract.c's PyNumber_Index() to accept PyObjects that have nb_int slots, and update test_getargs2 to test that an exception is thrown when __int__() returns a non-int object. by Trent Nelson · 16 years ago
  47. 896c317 Add XXX comments for whoever cleans up getargs.c :) by Georg Brandl · 16 years ago
  48. 380f7f2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from by Christian Heimes · 16 years ago
  49. 836baa5 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from by Christian Heimes · 16 years ago
  50. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  51. 4e30a84 Merged revisions 59239-59244 via svnmerge from by Christian Heimes · 17 years ago
  52. 39599dc PyString_AsString is permissive and accepts unicode strings. by Amaury Forgeot d'Arc · 17 years ago
  53. b083400 Fix error messages for buffer objects to say "bytes" instead of "string". by Guido van Rossum · 17 years ago
  54. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  55. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  56. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  57. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  58. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  59. 64fd6fb Ugh, hopefully I can get this right. The code is only compiled on Win64 by Neal Norwitz · 17 years ago
  60. b879f57 Try to fix the problem of passing a non-int on Win64 right this time. by Neal Norwitz · 17 years ago
  61. 538d17a Try to fix a problem with large values on Win64. Diagnosed by Thomas Heller by Neal Norwitz · 17 years ago
  62. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  63. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  64. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  65. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  66. d70539a Be more robust around bytes for e[st]#? formats. by Guido van Rossum · 17 years ago
  67. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  68. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  69. 09dc34f Compare and hash unicode objects like their UTF-8 representations. by Guido van Rossum · 17 years ago
  70. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  71. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  72. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  73. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  74. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  75. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  76. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  77. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  78. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  79. c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 18 years ago
  80. 572a9f3 Use %zd format characters for Py_ssize_t types. by Thomas Wouters · 18 years ago
  81. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  82. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  83. 9a27617 Based on discussion with Martin and Thomas on python-checkins by Neal Norwitz · 18 years ago
  84. 20dd93f Fix compiler warning on amd64. We can't use zd here since this is by Neal Norwitz · 18 years ago
  85. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  86. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  87. d704817 typo by Georg Brandl · 19 years ago
  88. 4ac13df Remove extra parens by Neal Norwitz · 19 years ago
  89. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  90. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  91. 6dd1461 Complete format code support in getargs.c::skipitem(), which is called when by Georg Brandl · 19 years ago
  92. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  93. 5253c30 I suppose a bug report or even a fix would be a better response, but by Michael W. Hudson · 19 years ago
  94. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  95. ff232d7 Clear internal call error in 'L' format. Fixes #723201. Backported to 2.4. by Martin v. Löwis · 19 years ago
  96. 3455338 Fix by Michael W. Hudson · 20 years ago
  97. 711e7d9 Add PyArg_VaParseTupleAndKeywords(). Document this function and by Brett Cannon · 20 years ago
  98. e6bbb4d Patch #684981: Add cleanup capability for argument parsers. Fixes 501716. by Martin v. Löwis · 21 years ago
  99. fce26e7 Roll back changes to 'h' format code -- too much breaks. Other changes stay. by Guido van Rossum · 21 years ago
  100. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago