1. 08976cb Merged revisions 61404-61407 via svnmerge from by Christian Heimes · 16 years ago
  2. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  3. 2673a57 Bug #1356: Avoid using the C99 keyword 'restrict'. by Martin v. Löwis · 17 years ago
  4. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  5. a5d16a3 Use unicode for error messages of duplicate args by Neal Norwitz · 17 years ago
  6. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  7. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  8. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  9. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  10. 3ef72bb Fix PyErr_Format() call (missing exception class). by Walter Dörwald · 17 years ago
  11. e42109d Use PyErr_Format() directly instead of PyOS_snprintf()+PyErr_SetString(). by Walter Dörwald · 17 years ago
  12. 4ddbdad Simplify error formatting. Fix error message in check_unoptimized(). by Walter Dörwald · 17 years ago
  13. 5d4ede1 Simplify ste_repr(). by Walter Dörwald · 17 years ago
  14. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  15. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  16. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  17. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  18. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  19. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 17 years ago
  20. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  21. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  22. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  23. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 17 years ago
  24. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  25. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  26. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  27. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  28. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  29. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  30. 17ab9a0 Fix set literals not being visited in symtable creation. by Georg Brandl · 18 years ago
  31. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  32. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  33. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  34. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  35. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  36. 090b3dd No need to export PySTEntry_New, it is only used in symtable.c by Neal Norwitz · 18 years ago
  37. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  38. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  39. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  40. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  41. d8fe7ab analyze_cells(): This no longer compiled under VC 7.1. by Tim Peters · 19 years ago
  42. 46b7bda Fix icc warnings: conversion from "long" to "int" may lose significant bits by Neal Norwitz · 19 years ago
  43. daf595f Fix icc warnings: shadowing local variable (i) and complex is set but not used, so remove by Neal Norwitz · 19 years ago
  44. 5d0ad50 Bug #889500, fix line number on SyntaxWarning for global declarations. by Neal Norwitz · 19 years ago
  45. 3715c3e Fix a few more ref leaks. Backport candidate by Neal Norwitz · 19 years ago
  46. 4737b23 Last batch of ref leaks in new AST code. by Neal Norwitz · 19 years ago
  47. 99b2533 Bring handling of genexpr in line with other anonymous scope names by Nick Coghlan · 19 years ago
  48. b6fc9df Fix a lot of memory and ref leaks in error paths. by Neal Norwitz · 19 years ago
  49. 62c2fac Do not pollute name block_ty, prefix with _Py_ by Neal Norwitz · 19 years ago
  50. 2dfcef5 Fix check_unoptimized() function. The only optimized namespaces are by Neil Schemenauer · 19 years ago
  51. 8b528b2 Fix private name mangling. The symtable also must do mangles so that by Neil Schemenauer · 19 years ago
  52. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  53. 3144130 ANSI-C-ify the placement of local var declarations. by Armin Rigo · 19 years ago
  54. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  55. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  56. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 21 years ago
  57. 2990640 Add a comment explaining the st_symbols cache. by Jeremy Hylton · 23 years ago
  58. 0f2d4b8 PySymtableEntry_New(): I'm not sure what this routine is doing, but it by Tim Peters · 23 years ago
  59. 86424e3 SF bug #488687 reported by Neal Norwitz by Jeremy Hylton · 23 years ago
  60. 4b4ab20 ste_repr(): Conversion of sprintf() to PyOS_snprintf() for buffer by Barry Warsaw · 23 years ago
  61. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  62. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  63. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 23 years ago
  64. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  65. 74b3bc4 Fix for bug 133489: compiler leaks memory by Jeremy Hylton · 23 years ago
  66. cb17ae8 Relax the rules for using 'from ... import *' and exec in the presence by Jeremy Hylton · 23 years ago