1. a6e8493 bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402) by Brian Coleman · 7 years ago
  2. 4102d25 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 7 years ago
  3. 713640c Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 7 years ago
  4. 6c10650 Merge 3.5 (issue #27942) by Yury Selivanov · 8 years ago
  5. d2fd359 ssue #27942: Fix memory leak in codeobject.c by Yury Selivanov · 8 years ago
  6. e81b0d3 Issue #28350: String constants with null character no longer interned. by Serhiy Storchaka · 8 years ago
  7. 09f3d08 Issue #28350: String constants with null character no longer interned. by Serhiy Storchaka · 8 years ago
  8. 3738c2d Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  9. 00a0fc1 Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  10. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  11. d0600ed Make PyCodeObject.co_extra even more private to force users through the proper API. by Brett Cannon · 8 years ago
  12. 3788b85 Change error return value to be more consistent with the rest of Python by Brett Cannon · 8 years ago
  13. 1bf494b use a the bool type for a boolean variable by Benjamin Peterson · 8 years ago
  14. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  15. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  16. cda8094 Issue #15984: Merge PyUnicode doc from 3.5 by Martin Panter · 8 years ago
  17. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  18. efb2413 code_richcompare() now uses the constants types by Victor Stinner · 8 years ago
  19. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 8 years ago
  20. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 8 years ago
  21. 7c74de4 Issue #18874: PyCode_New() now ensures that the filename is a ready Unicode by Victor Stinner · 11 years ago
  22. 3bbd2fa Issue #15456: Fix code __sizeof__ after #12399 change. by Martin v. Löwis · 12 years ago
  23. bf6e560 Make PyUnicode_Copy() private => _PyUnicode_Copy() by Victor Stinner · 12 years ago
  24. 3cdd5fb code_richcompare() now uses the constants types by Victor Stinner · 8 years ago
  25. ed2682b Reuse PyUnicode_Copy() in validate_and_copy_tuple() by Victor Stinner · 13 years ago
  26. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  27. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  28. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 13 years ago
  29. aaa4e9a Remove arbitrary string length limits by Victor Stinner · 13 years ago
  30. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 13 years ago
  31. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  32. 6c6a4d0 Remove unused label. by Georg Brandl · 14 years ago
  33. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  34. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  35. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  36. e3c7381 code_repr(): use %U to format the filename by Victor Stinner · 14 years ago
  37. 4222e9c Merged revisions 79060 via svnmerge from by Collin Winter · 14 years ago
  38. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  39. 8c1a50a #6502: add missing comma in docstring. by Georg Brandl · 15 years ago
  40. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  41. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  42. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  43. a1e7e13 #1939: update code object docstring. by Georg Brandl · 16 years ago
  44. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  45. d2093f7 Fix a refleak for `filename', introduced in rev. 58466. by Georg Brandl · 17 years ago
  46. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  47. 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
  48. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  49. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  50. 933daed Use PyUnicode_FromFormat() directly. by Walter Dörwald · 17 years ago
  51. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  52. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  53. f1624cd Fix a bunch of compiler warnings. In at least one case these were serious bugs! by Guido van Rossum · 18 years ago
  54. b6bb0c7 Implement == and != comparisons for code objects by value. by Guido van Rossum · 18 years ago
  55. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  56. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  57. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  58. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  59. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  60. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago