1. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  2. 08b523a MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures by Victor Stinner · 13 years ago
  3. 4eea849 CJK codecs checks for conversion to Py_UNICODE* failures by Victor Stinner · 13 years ago
  4. 9a80fab MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed by Victor Stinner · 13 years ago
  5. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  6. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  7. e15dce3 Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls by Victor Stinner · 13 years ago
  8. eb734f7 (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs at by Victor Stinner · 13 years ago
  9. 6bcbef7 Issue #12100: Don't reset incremental encoders of CJK codecs at each call to by Victor Stinner · 13 years ago
  10. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  11. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  12. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  13. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  14. 944820b Issue #5640: Fix _multibytecodec so that CJK codecs don't repeat by Hye-Shik Chang · 15 years ago
  15. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  16. 44bf631 Followup of #4874: also fix multibytecodec.c by Antoine Pitrou · 16 years ago
  17. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  18. 078f0f5 Issue #3575: Incremental decoder's decode function now takes bytearray by Hirokazu Yamamoto · 16 years ago
  19. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  20. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  21. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  22. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  23. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  24. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  25. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  26. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  27. 3ee05af Stream functions like read() are supposed to return bytes, not buffer. by Amaury Forgeot d'Arc · 17 years ago
  28. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  29. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  30. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  31. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  32. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  33. 27ff74d Fix another issue likely introduced by the merge. by Guido van Rossum · 17 years ago
  34. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  35. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  36. f4cfc8f Make test_codecs work. The CJK codecs now use bytes instead of str8 for by Guido van Rossum · 17 years ago
  37. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  38. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  39. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  40. 13247bf Add empty __init__ methods for stateful multibytecodec instances. by Hye-Shik Chang · 18 years ago
  41. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  42. 4b96c13 - Modernize code to use Py_ssize_t more intensively. by Hye-Shik Chang · 18 years ago
  43. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  44. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  45. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  46. 058bde1 SF Patch #1297028, cjkcodecs does not initialize type pointer by Neal Norwitz · 19 years ago
  47. f5a149a Bug #1005737, #1007249: Fix several build problems and warnings by Hye-Shik Chang · 20 years ago
  48. 2bb146f Bring CJKCodecs 1.1 into trunk. This completely reorganizes source by Hye-Shik Chang · 20 years ago
  49. 3e2a306 Add CJK codecs support as discussed on python-dev. (SF #873597) by Hye-Shik Chang · 21 years ago