- 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 15 years ago
- 42b5bcf Issue #5918: Fix a crash in the parser module. by Antoine Pitrou · 15 years ago
- fe879e8 #4529: fix parser's validation for try-except-finally statements. by Georg Brandl · 16 years ago
- 9dfe6a8 #4396 make the parser module correctly validate the with syntax by Benjamin Peterson · 16 years ago
- 6624a9f #4048 make the parser module accept relative imports as valid by Benjamin Peterson · 16 years ago
- dcee09d make sure the parser flags and passed onto the compiler by Benjamin Peterson · 16 years ago
- f9efabb 3k-warn about parser's "ast" aliases. by Georg Brandl · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 16 years ago
- 9510e4a Added module stub for copy_reg renaming in 3.0. by Alexandre Vassalotti · 16 years ago
- 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
- 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- 60e96f6 Expose column offset information in parse trees. by Jeremy Hylton · 18 years ago
- 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
- 4b194fa Update for new grammar by Neal Norwitz · 19 years ago
- c9d78aa Years in the making. by Tim Peters · 19 years ago
- d1e0ef6 SF #1445431, fix some leaks in error conditions. by Neal Norwitz · 19 years ago
- 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
- f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
- b79afb6 unconst. by Martin v. Löwis · 19 years ago
- e2dd78c Update for PEP 308 patch. by Thomas Wouters · 19 years ago
- ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
- f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 20 years ago
- 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
- 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
- c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
- 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
- eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
- 6a62725 Merge 23c1-branch back into the head. Barry will send email about the by Tim Peters · 21 years ago
- fc29646 Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose way by Guido van Rossum · 22 years ago
- e4b5500 Remove duplicate code introduced by fixing bug #678518 by Neal Norwitz · 22 years ago
- d58f3fc Remove unused variable. by Guido van Rossum · 22 years ago
- df1252d Apply logistix's patch from by Michael W. Hudson · 22 years ago
- 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 22 years ago
- accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
- 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
- 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
- 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
- 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
- 8b55b2d Fix memory leak in the parser module: There were two leaks in by Fred Drake · 23 years ago
- 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
- 13130bc Use the abstract object interfaces when digging around in module objects by Fred Drake · 23 years ago
- 78bdb9b Elaborate a comment. by Fred Drake · 23 years ago
- c2683dd The syntax trees handled by this module are not "abstract," so take the by Fred Drake · 23 years ago
- 02126f2 Add support for yield statements. (Should be merged with descr branch.) by Fred Drake · 23 years ago
- b28f6e7 Properly use &&. Closes bug #434989. by Martin v. Löwis · 23 years ago
- 7113708 Fix problems with validation of import statement parse trees. by Fred Drake · 24 years ago
- b6429a2 validate_varargslist(): Fix two bugs in this function, one that affected by Fred Drake · 24 years ago
- 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
- 0ac9b07 Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc. by Fred Drake · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
- 6d7c442 Try to supply a prototype for the module init function but avoid by Tim Peters · 24 years ago
- 28f739a Update the parser module to support augmented assignment. by Fred Drake · 24 years ago
- 85bf3bb validate_listmaker(): Revise to match Skip's latest changes to the by Fred Drake · 24 years ago
- 72b93ec Nuked unused variable. by Tim Peters · 24 years ago
- cff283c Update to reflect recent grammar changes (list comprehensions, extended by Fred Drake · 24 years ago
- 5c66986 ANSIfy a bit more. by Thomas Wouters · 24 years ago
- bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
- 286da3b ANSI-fying by Peter Schneider-Kamp · 24 years ago
- 3cd2ee4 Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors. by Fred Drake · 24 years ago
- 7797d36 Remove warning about local variable possibly being using uninitialized; by Fred Drake · 24 years ago
- 22269b5 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- e7ab64e validate_arglist(): Re-written to reflect extended call syntax. by Fred Drake · 25 years ago
- ff9ea48 ANSI-fy & de-tabify the source. (4-space indents already used.) by Fred Drake · 25 years ago
- 0dd7507 What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. by Fred Drake · 25 years ago
- 2a6875e parser__pickler(): Don't drop the third argument to by Fred Drake · 25 years ago
- 7a15ba5 Added keyword parameter support to all public interfaces; keyword by Fred Drake · 25 years ago
- 1a566ff When the parameter to PyInt_AsLong() has already been checked with by Fred Drake · 26 years ago
- 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
- 7f875ef parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL. by Fred Drake · 26 years ago
- 3c8c598 Sorry, the initializer for ob_type must really be NULL, by Guido van Rossum · 26 years ago
- ed3da23 parser_compare_nodes(): Corrected a minor type error; eliminate one GCC by Fred Drake · 27 years ago
- 268397f Made lint a bit happier. by Fred Drake · 27 years ago
- 19efc5f Add a declaration for strdup() for the Mac. (Jack) by Guido van Rossum · 27 years ago
- 301b5be In method & function tables, added a cast for the function pointers to keep by Fred Drake · 27 years ago
- 503d8d6 The documentation threatened it would happen -- the functions that should by Fred Drake · 27 years ago
- 43f8f9b Added support for pickling ast objects. by Fred Drake · 27 years ago
- 730806d Make new gcc -Wall happy by Guido van Rossum · 27 years ago
- c542bc7 Support raise with no parameters. by Fred Drake · 27 years ago
- d49266e Remove requirement for strdup() since it causes so many troubles for too many by Fred Drake · 27 years ago
- 1f14ccf Put back the extern declaration for strdup(), between #ifndef MS_WINDOWS. by Guido van Rossum · 27 years ago
- 0225a38 initparser(): Use PyErr_NewException() to create the exception. by Fred Drake · 27 years ago
- fd9ef4a Removed extern declaration of strdup(). Doesn't appear to be important and by Fred Drake · 27 years ago
- 69b9ae4 Add doc string to type object. by Fred Drake · 27 years ago
- 925e547 Support assert stmt. by Guido van Rossum · 28 years ago