1. d8edcb6 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  2. 50b6778 Issue #10538. Put a reference to the source object in the Py_buffer when by Kristján Valur Jónsson · 12 years ago
  3. 0a92d18 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 13 years ago
  4. 645b9f6 Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not by Victor Stinner · 13 years ago
  5. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  6. 72ec2e2 14 years later, we still don't know what it's for. by Antoine Pitrou · 14 years ago
  7. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 14 years ago
  8. 1b34d25 Issue #5080: turn the DeprecationWarning from float arguments passed by Mark Dickinson · 15 years ago
  9. 9279e7d - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with by Sean Reifscheider · 15 years ago
  10. 6c59e72 #5580: no need to use parentheses when converterr() argument is actually a type description. by Georg Brandl · 15 years ago
  11. 4caef5c fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|' by Benjamin Peterson · 16 years ago
  12. d4ae97b #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an by Antoine Pitrou · 16 years ago
  13. 18aa388 Fix: by Neal Norwitz · 16 years ago
  14. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  15. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  16. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  17. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  18. df6ac3d Whitespace normalization by Neal Norwitz · 17 years ago
  19. dafd32b Issue #1521: on 64bit platforms, str.decode fails on very long strings. by Amaury Forgeot d'Arc · 17 years ago
  20. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  21. d14bf61 Fix typo. by Walter Dörwald · 18 years ago
  22. 209307e Introduce an upper bound on tuple nesting depth in by Georg Brandl · 18 years ago
  23. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 18 years ago
  24. 98251f8 Argh. "integer" is a very confusing word ;) by Georg Brandl · 18 years ago
  25. 22ccbbc Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds checking. by Georg Brandl · 18 years ago
  26. b507972 C++ compiler cleanup: cast... by Skip Montanaro · 18 years ago
  27. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  28. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 18 years ago
  29. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  30. 9730038 avoid C++ name mangling for the _Py.*SizeT functions by Anthony Baxter · 18 years ago
  31. c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 19 years ago
  32. 572a9f3 Use %zd format characters for Py_ssize_t types. by Thomas Wouters · 19 years ago
  33. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 19 years ago
  34. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  35. 9a27617 Based on discussion with Martin and Thomas on python-checkins by Neal Norwitz · 19 years ago
  36. 20dd93f Fix compiler warning on amd64. We can't use zd here since this is by Neal Norwitz · 19 years ago
  37. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
  38. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  39. d704817 typo by Georg Brandl · 19 years ago
  40. 4ac13df Remove extra parens by Neal Norwitz · 19 years ago
  41. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  42. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  43. 6dd1461 Complete format code support in getargs.c::skipitem(), which is called when by Georg Brandl · 19 years ago
  44. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  45. 5253c30 I suppose a bug report or even a fix would be a better response, but by Michael W. Hudson · 19 years ago
  46. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 20 years ago
  47. ff232d7 Clear internal call error in 'L' format. Fixes #723201. Backported to 2.4. by Martin v. Löwis · 20 years ago
  48. 3455338 Fix by Michael W. Hudson · 20 years ago
  49. 711e7d9 Add PyArg_VaParseTupleAndKeywords(). Document this function and by Brett Cannon · 20 years ago
  50. e6bbb4d Patch #684981: Add cleanup capability for argument parsers. Fixes 501716. by Martin v. Löwis · 21 years ago
  51. fce26e7 Roll back changes to 'h' format code -- too much breaks. Other changes stay. by Guido van Rossum · 21 years ago
  52. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  53. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  54. 5042da6 If a float is passed where a int is expected, issue a DeprecationWarning by Neil Schemenauer · 22 years ago
  55. b808e99 Raise a TypeError if a float is passed when an integer is specified. by Neil Schemenauer · 22 years ago
  56. dffda2e Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so that by Walter Dörwald · 22 years ago
  57. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  58. 5547476 Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords. by Guido van Rossum · 22 years ago
  59. 3e3eacb Fixed "u#" parser marker to pass through Unicode objects as-is without by Marc-André Lemburg · 23 years ago
  60. faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
  61. cffed4b SF bug 486278 SystemError: Python/getargs.c:1086: bad. by Tim Peters · 23 years ago
  62. b048b26 Two screwups fixed for sizeof(char *) instead of sizeof(char []). by Jeremy Hylton · 23 years ago
  63. f16e05e Use PyOS_snprintf() at some cost even though it was correct before. by Jeremy Hylton · 23 years ago
  64. 23ae987 Use PyOS_snprintf when possible. by Jeremy Hylton · 23 years ago
  65. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  66. c2f0112 vgetargskeywords() by Tim Peters · 23 years ago
  67. b639d49 vgetargskeywords: Now that it's clear that nkwlist must equal max, and by Tim Peters · 23 years ago
  68. dc5eff9 vgetargskeywords: Prevent another potential sprintf buffer overrun. by Tim Peters · 23 years ago
  69. 62d48e1 vgetargskeywords: Verify kwlist has the required length while parsing by Tim Peters · 23 years ago
  70. 0af4916 vgetargskeywords: Removed all PyErr_Clear() calls. It's possible that by Tim Peters · 23 years ago
  71. 077f574 vgetargskeywords: The keywords arg is a dict (if non-NULL), so use the by Tim Peters · 23 years ago
  72. 61dde63 vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls. by Tim Peters · 23 years ago
  73. b054be4 vgetargskeywords: by Tim Peters · 23 years ago
  74. b0872fc vgetargskeywords: by Tim Peters · 23 years ago
  75. 6fb2635 vgetargskeywords: by Tim Peters · 23 years ago
  76. 28bf7a9 vgetargskeywords: by Tim Peters · 23 years ago
  77. f8cd3e8 PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (I by Tim Peters · 23 years ago
  78. 45772cd PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments, by Tim Peters · 23 years ago
  79. a9f4739 tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexed by Tim Peters · 23 years ago
  80. f4331c1 vgetargskeywords(): remove test that can't succeed. Not a bugfix, just by Tim Peters · 23 years ago
  81. e4616e6 PyArg_UnpackTuple(): New argument unpacking function suggested by Jim by Fred Drake · 23 years ago
  82. 563dfc2 Style conformance: function name begins a new line *consistently*. by Fred Drake · 23 years ago
  83. 4819e97 Undo part of 2.59: 't' case of convertsimple() should not use convertbuffer(). by Jeremy Hylton · 23 years ago
  84. 0407aea One more place where PyString_AsString() was used after a by Jeremy Hylton · 23 years ago
  85. a4c8cd7 Use AS_STRING() following the check and avoid an extra call. by Jeremy Hylton · 23 years ago
  86. 77b8b67 Fix core dump in PyArg_ParseTuple() with Unicode arguments. by Jeremy Hylton · 23 years ago
  87. cbfc855 The "O!" format code should implement an isinstance() test by Guido van Rossum · 23 years ago
  88. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  89. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  90. 25916bd Change cascaded if stmts to switch stmt in vgetargs1(). by Jeremy Hylton · 23 years ago
  91. 1cb7aa3 Internal refactoring of convertsimple() and friends. by Jeremy Hylton · 23 years ago
  92. d657303 Fix whitespace botch. by Fred Drake · 23 years ago
  93. 0f8117f vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and by Jeremy Hylton · 23 years ago
  94. ef8b654 Add support for Windows using "mbcs" as the default Unicode encoding when dealing with the file system. As discussed on python-dev and in patch 410465. by Mark Hammond · 23 years ago
  95. 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 23 years ago
  96. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 24 years ago
  97. a0ac40c Better error message when non-dictionary received for **kwarg by Jeremy Hylton · 24 years ago
  98. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 24 years ago
  99. 0705028 vgetargskeywords(): Patch for memory leak identified in bug #119862. by Barry Warsaw · 24 years ago
  100. 60a1e7f Clarified some of the error messages, esp. "read-only character by Guido van Rossum · 24 years ago