1. 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 18 years ago
  2. cb9426b Beefed up description of what this does; new XXX. by Tim Peters · 18 years ago
  3. 5f4390f New XXX pointing out errors in the description of by Tim Peters · 18 years ago
  4. 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 18 years ago
  5. 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  6. 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 18 years ago
  7. 857b300 Explain why we use the unsigned int format for a signed int variable. by Thomas Wouters · 18 years ago
  8. 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 18 years ago
  9. d9cf85f Fix refleak if from __future__ import was not first by Neal Norwitz · 18 years ago
  10. 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 18 years ago
  11. e88d0a5 Spell threading write, not thraeading by Neal Norwitz · 18 years ago
  12. 83d1266 Properly fix Py_SAFE_DOWNCAST-triggerd bugs. by Thomas Wouters · 18 years ago
  13. 369092b Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t by Thomas Wouters · 18 years ago
  14. 46872b1 Add a missing Py_DECREF to BaseException__unicode__ . by Brett Cannon · 18 years ago
  15. 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 18 years ago
  16. 3a5468e Update known issues to reflect reality by Neal Norwitz · 18 years ago
  17. 28f635b Remove duplicate entry by Neal Norwitz · 18 years ago
  18. 3096c53 Fix latex typos as spotted by George Yoshida. by Brett Cannon · 18 years ago
  19. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 18 years ago
  20. 26cc63f Make Py_ssize_t-clean by Thomas Wouters · 18 years ago
  21. 695934a Make Py_ssize_t clean. by Thomas Wouters · 18 years ago
  22. d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 18 years ago
  23. 5df2e61 Remove UNLESS. by Martin v. Löwis · 18 years ago
  24. 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 18 years ago
  25. 5ddfe41 Whitespace normalization. by Tim Peters · 18 years ago
  26. a5fa2a8 Fix gcc (4.0.x) warning about use of uninitialized variable. by Thomas Wouters · 18 years ago
  27. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  28. 3ffa59b Rework channelnumber/samplesize detetion code's output variables a bit to by Thomas Wouters · 18 years ago
  29. 7464b43 Fix incompatible assignment warning from previous checkin. by Thomas Wouters · 18 years ago
  30. 7f401ef Fix gcc (4.0.x) warning about use of uninitialized variables. by Thomas Wouters · 18 years ago
  31. f86d1e8 Silence gcc (4.0.x) warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  32. 54ac294 Document PEP 352 changes. Also added GeneratorExit. by Brett Cannon · 18 years ago
  33. 65b3dab Fix uninitialized value. (Why are we using bools instead of ints, like we do by Thomas Wouters · 18 years ago
  34. 9c54448 Fix brainfart. by Thomas Wouters · 18 years ago
  35. 1e365b2 Remove gcc (4.0.x) warning about uninitialized value by explicitly setting by Thomas Wouters · 18 years ago
  36. 9bc844e Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  37. f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  38. 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 18 years ago
  39. c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 18 years ago
  40. 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 18 years ago
  41. 20e192b Update for 'with' statement. by Brett Cannon · 18 years ago
  42. a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 18 years ago
  43. 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 18 years ago
  44. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 18 years ago
  45. c9066ca Fix warning that texcheck complained about. by Martin v. Löwis · 18 years ago
  46. e9357b2 Tabify and reflow some long lines. by Jeremy Hylton · 18 years ago
  47. 224003b Add missing DECREF. by Jeremy Hylton · 18 years ago
  48. 1f2dac5 markup glitch (spotted by George Yoshida) by Fredrik Lundh · 18 years ago
  49. fe8a566 Remove svn:mime-type (inexplicably set to a binary type), by Tim Peters · 18 years ago
  50. 1a57296 Set svn:eol-style to native. by Tim Peters · 18 years ago
  51. 6b4ed74 Fix parsing of exception_hierarchy.txt when a platform-specific exception is by Brett Cannon · 18 years ago
  52. 3b19754 Document new Py_ssize_t API. by Martin v. Löwis · 18 years ago
  53. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 18 years ago
  54. 572a9f3 Use %zd format characters for Py_ssize_t types. by Thomas Wouters · 18 years ago
  55. 7c187bc Remove redundant isinstance() check. by Thomas Wouters · 18 years ago
  56. 7f59732 Put back the essence of Jeremy's original XXX comment. by Thomas Wouters · 18 years ago
  57. 497114e Add tool to check documentation against declaration. by Martin v. Löwis · 18 years ago
  58. 29fafd8 Make documentation match the implementation. by Martin v. Löwis · 18 years ago
  59. 67d70eb Repair mangled code in the Windows flavor of posix__getfullpathname(). by Tim Peters · 18 years ago
  60. acde734 Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditional by Brett Cannon · 18 years ago
  61. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  62. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  63. 66485ae Remove unused field. by Martin v. Löwis · 18 years ago
  64. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  65. 68bc4f9 Py_ssize_t-ify. by Thomas Wouters · 18 years ago
  66. 9d63cca Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on by Thomas Wouters · 18 years ago
  67. ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 18 years ago
  68. 1f1c16a Regenerate. by Thomas Wouters · 18 years ago
  69. 53d960c Don't pollute namespace as bad as before. All the types are static now. by Neal Norwitz · 18 years ago
  70. 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 18 years ago
  71. 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 18 years ago
  72. e4d3a72 Include code.h more sanely. by Thomas Wouters · 18 years ago
  73. 090b3dd No need to export PySTEntry_New, it is only used in symtable.c by Neal Norwitz · 18 years ago
  74. 7ef75e4 Set eol-style on new .py files. by Tim Peters · 18 years ago
  75. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  76. 87a8b4f unparse.py can now unparse itself. by Martin v. Löwis · 18 years ago
  77. cd8ca80 Add a note about removing the file once the bug is fixed by Neal Norwitz · 18 years ago
  78. 84ef21c Its right now. by Tim Peters · 18 years ago
  79. f16b706 Ignore .pyc files by Neal Norwitz · 18 years ago
  80. 055ec24 Note that as generates a warning too by Neal Norwitz · 18 years ago
  81. e42e405 Martin owns PEP 353 and did most of the work by Neal Norwitz · 18 years ago
  82. 9193491 Make __future__ features similar for with and absolute import since they were both added before a1 by Neal Norwitz · 18 years ago
  83. 5e9f1fa Generally inehrit codeflags that are in PyCF_MASK, instead of writing it out by Thomas Wouters · 18 years ago
  84. 56820c2 Add some stats collection in debugging mode. by Jeremy Hylton · 18 years ago
  85. dfc2404 Gave README a .txt extension. by Tim Peters · 18 years ago
  86. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  87. edc8f13 Add directory which contains known ref leaks. Some of these are likely to be system dependent (like test_gestalt). by Neal Norwitz · 18 years ago
  88. 99b4ee6 Use simple PyList to implement list of PyObject pointers by Jeremy Hylton · 18 years ago
  89. 400cbc3 Set EOL style to native. by Tim Peters · 18 years ago
  90. 85b1052 Another bit of unconstification. by Tim Peters · 18 years ago
  91. 710ab3b Whitespace normalization. by Tim Peters · 18 years ago
  92. 08533fd Tabify by Jeremy Hylton · 18 years ago
  93. 14ca327 Instead of printing the exception when you interrupt a test (Ctrl-C), by Neal Norwitz · 18 years ago
  94. a829313 Remove asdl_seq_APPEND() and simplify asdl seq implementation. by Jeremy Hylton · 18 years ago
  95. 03bdedd Update comments by Neal Norwitz · 18 years ago
  96. 77f1bb2 Real arena implementation by Jeremy Hylton · 18 years ago
  97. 77e42ff George Yoshida points out that the special characters by Neal Norwitz · 18 years ago
  98. 7b03bad Test case to cover subscription bug from SF 1333982 by Jeremy Hylton · 18 years ago
  99. fb609f4 Wups, add NEWS item I'd written but not checked in. by Thomas Wouters · 18 years ago
  100. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago