1. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  2. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  3. 25916bd Change cascaded if stmts to switch stmt in vgetargs1(). by Jeremy Hylton · 23 years ago
  4. 1cb7aa3 Internal refactoring of convertsimple() and friends. by Jeremy Hylton · 23 years ago
  5. d657303 Fix whitespace botch. by Fred Drake · 23 years ago
  6. 0f8117f vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and by Jeremy Hylton · 23 years ago
  7. 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
  8. 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 23 years ago
  9. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 24 years ago
  10. a0ac40c Better error message when non-dictionary received for **kwarg by Jeremy Hylton · 24 years ago
  11. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 24 years ago
  12. 0705028 vgetargskeywords(): Patch for memory leak identified in bug #119862. by Barry Warsaw · 24 years ago
  13. 60a1e7f Clarified some of the error messages, esp. "read-only character by Guido van Rossum · 24 years ago
  14. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  15. 0afff38 Special case the "s#" PyArg_Parse() token for Unicode objects: by Marc-André Lemburg · 24 years ago
  16. a454ebd Added B format char to Py_BuildValue (same as b,h,i, but makes by Jack Jansen · 24 years ago
  17. bbcf2a7 This patch hopefully fixes the problem with "es#" and "es" in by Marc-André Lemburg · 24 years ago
  18. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  19. cc22fbe Changed H specifier to mean "bitfield", i.e. any value from by Jack Jansen · 24 years ago
  20. bff879c This patch finalizes the move from UTF-8 to a default encoding in by Marc-André Lemburg · 24 years ago
  21. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  22. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  23. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  24. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  25. d50338f Added support for H (unsigned short) specifier in PyArg_ParseTuple and by Jack Jansen · 24 years ago
  26. db67739 Jack Jansen, Mac patch: by Guido van Rossum · 24 years ago
  27. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  28. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  29. 5e08cb8 Vladimir Marangozov: by Guido van Rossum · 24 years ago
  30. 230cae7 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  31. 80dc16b Trent Mick: by Guido van Rossum · 24 years ago
  32. 25871c0 Brian Hooper <brian_takashi@hotmail.com>: by Fred Drake · 24 years ago
  33. 700c6ff Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  34. 24bdb04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  35. 50fbb15 Typo fixed by Mark Hammond. by Guido van Rossum · 24 years ago
  36. d8855fd Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  37. e826ef0 Marc-Andre Lemburg: support for Unicode strings; 'U' expects a Unicode object. by Guido van Rossum · 24 years ago
  38. 66368cc Patch by Tommy Burnette to accept an arbitrary sequence when "(...)" by Guido van Rossum · 26 years ago
  39. 3dbba6e Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. by Guido van Rossum · 26 years ago
  40. b317f8a Implement new format character 't#'. This is like s#, accepting an by Guido van Rossum · 26 years ago
  41. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  42. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  43. fccfe89 Another veeeeeery old patch... by Guido van Rossum · 26 years ago
  44. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  45. 0d6b49e Protect PyErr_Format format string argument from overflow (ironically, by Guido van Rossum · 27 years ago
  46. 7d4f68c Oops -- '(' is also a legal start character of a new format... by Guido van Rossum · 27 years ago
  47. 231a41e Add explicit check for correct next character in format at end of by Guido van Rossum · 27 years ago
  48. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  49. 13454c3 Fix old typo PyArgs_VaParse -> PyArg_VaParse. by Guido van Rossum · 27 years ago
  50. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  51. 6bf62da Keep gcc -Wall and Microsoft VC happy. by Guido van Rossum · 27 years ago
  52. 80bb965 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  53. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  54. c1d5053 Add needed #include <ctype.h> by Guido van Rossum · 28 years ago
  55. aa35465 Support for keyword arguments (PyArg_ParseTupleAndKeywords) donated by by Guido van Rossum · 28 years ago
  56. 530956d Py_complex; and WITHOUT_COMPLEX added to getargs.c by Guido van Rossum · 28 years ago
  57. 8a5c5d2 changes for complex numbers by Guido van Rossum · 29 years ago
  58. 64fc649 don't overwrite error already set (e.g. from O&) by Guido van Rossum · 30 years ago
  59. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  60. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  61. 13d0ed1 prevent core dump for old getargs() with NULL arg by Guido van Rossum · 30 years ago
  62. fe3f1a2 * Python/{modsupport.c,getargs.c,Makefile.in}, by Guido van Rossum · 30 years ago