1. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  2. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  3. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  4. ae4cfb1 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  5. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  6. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  7. e1b5ac6 Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  8. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  9. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  10. b1b3efc Merged revisions 61954,61956-61957 via svnmerge from by Christian Heimes · 16 years ago
  11. 4d6ec85 Merged revisions 61952-61953 via svnmerge from by Christian Heimes · 16 years ago
  12. 2593146 Bug #2301: Don't try decoding the source code into the original by Martin v. Löwis · 16 years ago
  13. 52d168a Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure. by Georg Brandl · 16 years ago
  14. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  15. fdc1a56 Cast away const qualifier to silence a compiler warning about it. by Brett Cannon · 17 years ago
  16. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  17. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  18. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  19. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  20. 6caa07b Make 'python -tt' the default, meaning Python won't allow mixing tabs and by Thomas Wouters · 18 years ago
  21. fc85c92 Get rid of compiler warning by Neal Norwitz · 18 years ago
  22. e4993c7 Get rid of compiler warning about with_msg and as_msg being unused by Neal Norwitz · 18 years ago
  23. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  24. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  25. 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 18 years ago
  26. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  27. a87c445 Remove C99ism. by Martin v. Löwis · 18 years ago
  28. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  29. 56c6561 Prevent unlikely memory leak, tok should always be freed when parsetok() returns by Neal Norwitz · 19 years ago
  30. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  31. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  32. 4ded4b5 Pass the flags along, rather than ignoring them. Backport candidate by Neal Norwitz · 20 years ago
  33. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  34. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  35. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  36. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  37. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  38. c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 22 years ago
  39. 16eff6f Initialize err_ret with filename if available. Fixes #498828. by Martin v. Löwis · 22 years ago
  40. 0c156a5 Patch from SF bug #472956: UMR when there is a syntax error (Neal Norwitz) by Guido van Rossum · 23 years ago
  41. da62ecc Add a really stupid warning about 'yield' used as an identifier. by Guido van Rossum · 23 years ago
  42. fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
  43. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  44. 38aa14a PyParser_ParseString(): When the err_ret structure is initialized, the by Barry Warsaw · 24 years ago
  45. 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
  46. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  47. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  48. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  49. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  50. 6da3434 Trent Mick: familiar simple Win64 patches by Guido van Rossum · 24 years ago
  51. 6b7a5d8 Jack Jansen: Removed Macintosh tab-guessing code by Guido van Rossum · 24 years ago
  52. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  53. 89ce454 Make sure that -t and -tt also work on strings passed to compile(). by Guido van Rossum · 26 years ago
  54. 6135df6 Declare and use Py_TabcheckFlag here. by Guido van Rossum · 26 years ago
  55. ff0ec52 Finally plug the memory leak caused by syntax error (including by Guido van Rossum · 27 years ago
  56. 86bea46 Another directory quickly renamed. by Guido van Rossum · 27 years ago
  57. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  58. ec49827 fix strncpy call (uninitialized memory read) by Guido van Rossum · 29 years ago
  59. b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  60. bd0389d don't call strncpy(str, NULL, 0) by Guido van Rossum · 30 years ago
  61. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  62. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  63. 91ece42 Guess tab size on the Mac from tab resource. by Guido van Rossum · 32 years ago
  64. d8b1d37 Append a NEWLINE token at the end of a file. by Guido van Rossum · 32 years ago
  65. 56b07c8 When printing an error message, don't choke if tok->buf is NULL. by Guido van Rossum · 33 years ago
  66. 326f582 Don't print the line number for syntax errors in string parsing. by Guido van Rossum · 33 years ago
  67. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  68. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  69. 840bcf1 Set parse tree in parser data structure to NULL when returning by Guido van Rossum · 34 years ago
  70. 85a5fbb Initial revision by Guido van Rossum · 34 years ago