1. f5adf1e Use Py_ssize_t to count the length. by Martin v. Löwis · 18 years ago
  2. a87c445 Remove C99ism. by Martin v. Löwis · 18 years ago
  3. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  4. c960f26 Improved handling of syntax errors. by Jeremy Hylton · 18 years ago
  5. 46aae19 Revert previous checkin, the check is for <, not ==. i is unsed in non-debug builds, but is used in debug builds by Neal Norwitz · 19 years ago
  6. 056a2d6 Fix icc warnings. This couldn't have been correct since i is checked by Neal Norwitz · 19 years ago
  7. 536cf99 Whitespace normalization. by Tim Peters · 19 years ago
  8. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  9. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  10. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  11. 6b1793f When regenerating files like Python-ast.h, take care that the generated by Armin Rigo · 19 years ago
  12. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  13. dee2fd5 Fix some more memory leaks. by Neal Norwitz · 19 years ago
  14. 56c6561 Prevent unlikely memory leak, tok should always be freed when parsetok() returns by Neal Norwitz · 19 years ago
  15. 19b0f40 Thou shalt not lie, there are really 5 types now by Neal Norwitz · 19 years ago
  16. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  17. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  18. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  19. a34584b Use PyErr_NoMemory() instead of rolling our own. by Neal Norwitz · 19 years ago
  20. c0d5faa Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate by Neal Norwitz · 19 years ago
  21. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  22. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  23. c1f5fff Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file by Walter Dörwald · 19 years ago
  24. e3afc59 In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, by Michael W. Hudson · 19 years ago
  25. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  26. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  27. 7df44b3 SF #941229: Decode source code with sys.stdin.encoding in interactive by Hye-Shik Chang · 20 years ago
  28. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  29. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  30. 4ded4b5 Pass the flags along, rather than ignoring them. Backport candidate by Neal Norwitz · 20 years ago
  31. b7e898a "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD by Tim Peters · 20 years ago
  32. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  33. 93b4b88 [Patch #974633] Check PyObject_MALLOC return for error by Andrew M. Kuchling · 20 years ago
  34. c696617 Fix for SF 780407. Change %08l to %p to print a pointer. Will backport to 2.3. by Guido van Rossum · 20 years ago
  35. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 20 years ago
  36. bd311d8 Remove a "temporary" piece of code that was probably unneeded since by Guido van Rossum · 21 years ago
  37. 6402357 Talk about old code: removed a reference to THINK_C. by Jack Jansen · 21 years ago
  38. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  39. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  40. 8ab2ec4 SF bug 751956: graminit.[ch] don't build on windows by Tim Peters · 21 years ago
  41. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  42. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  43. a649e9c Remove file that was moved to ../Include by Guido van Rossum · 21 years ago
  44. d3ab37f Changes from Jonathan Riehl to allow his pgen extension (PEP 269) to by Guido van Rossum · 21 years ago
  45. edaa071 compile_atom(): Neal's last checkin removing the setting of i broke by Barry Warsaw · 21 years ago
  46. 5f16a31 Remove setting i since it isn't used. Found in unrelated bug 690012. by Neal Norwitz · 21 years ago
  47. 1fb1400 Add URL for PEP to the source code encoding warning. by Marc-André Lemburg · 21 years ago
  48. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  49. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 21 years ago
  50. a2e303c Fix [ 665014 ] files with long lines and an encoding crash. by Mark Hammond · 22 years ago
  51. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  52. e08e1bc Fix compiler warning on HP-UX. Cast param to isalnum() to int. by Neal Norwitz · 22 years ago
  53. 35f63a8 Change PyOS_Readline declaration to match the recent change to myreadline.c by Skip Montanaro · 22 years ago
  54. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  55. 17db21f Removed reliance on gcc/C99 extension. by Tim Peters · 22 years ago
  56. f62a89b Ignore encoding declarations inside strings. Fixes #603509. by Martin v. Löwis · 22 years ago
  57. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  58. 118ec70 provide less mysterious error messages when seeing end-of-line in by Skip Montanaro · 22 years ago
  59. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  60. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  61. cf0a2cf Added a cast to shut up a compiler warning. by Jack Jansen · 22 years ago
  62. 725bb23 Add 1 to lineno in deprecation warning. Fixes #590888. by Martin v. Löwis · 22 years ago
  63. 1ee99d3 Make pgen compile with pydebug. Duplicate normalized names, as it may by Martin v. Löwis · 22 years ago
  64. cd280fb Group statements properly. by Martin v. Löwis · 22 years ago
  65. 2c3f9c6 Repaired a fatal compiler error in the debug build: it's not clear what by Tim Peters · 22 years ago
  66. 919603b Squash compiler wng about signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  67. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  68. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  69. e561dc2 XXXROUNDUP(): Turns out this fixed Andrew MacIntyre's memory-mgmt by Tim Peters · 22 years ago
  70. 2f10cb8 Fix bug 439992 - [win32] KeyboardInterrupt Not Caught. by Mark Hammond · 22 years ago
  71. 7b4c8e4 I trust the parser accelators are getting added :-). by Jeremy Hylton · 22 years ago
  72. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  73. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  74. 623fdb9 PyNode_AddChild() and fancy_roundup(): Be paranoid about int overflow. by Tim Peters · 22 years ago
  75. 755ebea PyNode_AddChild(): Do aggressive over-allocation when the number of by Tim Peters · 22 years ago
  76. 79e39bd Add definition of Py_IgnoreEnvironmentFlag (needed at least in debug mode). by Guido van Rossum · 22 years ago
  77. 5352d8c Py_IgnoreEnvironmentFlag should be extern, since it is declared in pythonrun.c by Neal Norwitz · 22 years ago
  78. 1ccb3ee Link with the right C library! This has always been wrong (& my fault). by Tim Peters · 22 years ago
  79. 44c4c6d Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag. Provide it. by Neil Schemenauer · 22 years ago
  80. 1c61926 Update the Windows makefile for 2.3. by Tim Peters · 22 years ago
  81. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  82. c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 22 years ago
  83. c155dd4 Disable the parser hacks that allowed the "yield" keyword to be enabled by Neil Schemenauer · 22 years ago
  84. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  85. 16eff6f Initialize err_ret with filename if available. Fixes #498828. by Martin v. Löwis · 23 years ago
  86. 88e138c PyGrammar_LabelRepr(): sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  87. 1ca1296 The parser doesn't need its own implementation of assert, and having its by Tim Peters · 23 years ago
  88. 5947af5 Reverting last change so we don't have to think about the assert macro by Barry Warsaw · 23 years ago
  89. b97c969 PyGrammar_LabelRepr(): Conversion of sprintf() to PyOS_snprintf() for by Barry Warsaw · 23 years ago
  90. 0c156a5 Patch from SF bug #472956: UMR when there is a syntax error (Neal Norwitz) by Guido van Rossum · 23 years ago
  91. eba84cd An MSVC makefile to rebuild the grammar files (graminit.[ch]) manually. by Tim Peters · 23 years ago
  92. 25dfe2c Silence parser generator output. by Guido van Rossum · 23 years ago
  93. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  94. 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
  95. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  96. 3c03323 Fis SF bug #442647: not all forms of legal future statements were by Guido van Rossum · 23 years ago
  97. da62ecc Add a really stupid warning about 'yield' used as an identifier. by Guido van Rossum · 23 years ago
  98. fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
  99. b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
  100. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago