498 Commits (41bade96a4d1dcd35bbba79c2eabe052d02756a4)

Author SHA1 Message Date
Guido van Rossum 2d3b986480 Disambiguate the grammar for backtick. 24 years ago
Neil Schemenauer 89e3ee0ccf If Py_OptimizeFlag is false then always evaluate assert conditions, don't 24 years ago
Tim Peters 51e7f5caba Moving pymalloc along. 24 years ago
Martin v. Löwis 314fc79ce8 Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars. 24 years ago
Martin v. Löwis cfeb3b6ab8 Patch #50002: Display line information for bad \x escapes: 24 years ago
Neal Norwitz 150d09d360 Fix missing space between words. Bugfix candidate. 24 years ago
Neal Norwitz 2a47c0fa23 Fix spelling mistakes. Bugfix candidates. 24 years ago
Guido van Rossum 340cbe74b9 A tentative fix for SF bug #503837 (Roeland Rengelink): 24 years ago
Martin v. Löwis 7198a525f3 Patch #494783: Rename cmp_op enumerators. 25 years ago
Jeremy Hylton 733c8935f9 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code 25 years ago
Jeremy Hylton 86424e333f SF bug #488687 reported by Neal Norwitz 25 years ago
Barry Warsaw 8f6d868bbb code_repr(), com_addop_varname(), com_list_comprehension(), 25 years ago
Marc-André Lemburg d4c0a9c59b Fixes for possible buffer overflows in sprintf() usages. 25 years ago
Jeremy Hylton 9f64caaf00 Use PyObject_CheckReadBuffer(). 25 years ago
Jeremy Hylton 778e265462 Fix SF buf #480096: Assign to __debug__ still allowed 25 years ago
Tim Peters 8c5e41559c Part of SF bug #478003 possible memory leaks in err handling. 25 years ago
Jeremy Hylton 961dfe0d85 Fix for SF bug [ #471928 ] global made w/nested list comprehensions 25 years ago
Jeremy Hylton 93a569d634 Fix computation of stack depth for classdef and closures. 25 years ago
Guido van Rossum 1c917072ca Very subtle syntax change: in a list comprehension, the testlist in 25 years ago
Guido van Rossum 6f7993765a Add optional docstrings to member descriptors. For backwards 25 years ago
Jeremy Hylton c785f4841c Supply code objects a new-style tp_members slot and tp_getattr impl. 25 years ago
Tim Peters 51e2651b29 SF bug [#458941] Looks like a unary minus bug. 25 years ago
Fred Drake 14ef244dfe When re-writing a factor containing a unary negation of a literal, only 25 years ago
Sjoerd Mullender a2c2ae62df Removed unreachable goto statement to silence SGI compiler. 25 years ago
Jeremy Hylton 71b6af91d3 If an integer constant can't be generated from an integer literal 25 years ago
Martin v. Löwis 339d0f720e Patch #445762: Support --disable-unicode 25 years ago
Jeremy Hylton 481081e369 Fix SF bug [ #450909 ] __future__.division fails at prompt 25 years ago
Jeremy Hylton d5e5a2aa28 SF Patch [ 429024 ] deal with some unary ops at compile time 25 years ago
Jeremy Hylton 1abf610b15 Remove st_nested_scopes from struct symtable, 25 years ago
Tim Peters ff1f8521ac st_nested_scopes was uninitialized trash. Jeremy should fix in a better 25 years ago
Jeremy Hylton b857ba261f Refactor future feature handling 25 years ago
Guido van Rossum 4668b000a1 Implement PEP 238 in its (almost) full glory. 25 years ago
Jeremy Hylton 6a53bd8582 Another bug fix for recent import * warning (caught by Thomas Wouters) 25 years ago
Jeremy Hylton ba591bf3bd Fix error message for import * in function/class scope 25 years ago
Jeremy Hylton 8a6f295303 Fix SF bug [ #445474 ] warn about import * inside functions 25 years ago
Guido van Rossum e16c7aee4b jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' 25 years ago
Tim Peters 5ba5866281 Part way to allowing "from __future__ import generators" to communicate 25 years ago
Tim Peters 08a898f85d Another "if 0:" hack, this time to complain about otherwise invisible 25 years ago
Tim Peters b6c3ceae79 SF bug #436207: "if 0: yield x" is ignored. 25 years ago
Tim Peters ad1a18b78e Change the semantics of "return" in generators, as discussed on the 25 years ago
Tim Peters 95c80f8439 Disallow 'yield' in a 'try' block when there's a 'finally' clause. 25 years ago
Tim Peters 5ca576ed0a Merging the gen-branch into the main line, at Guido's direction. Yay! 25 years ago
Tim Peters 2a7f384122 SF bug 430991: wrong co_lnotab 25 years ago
Tim Peters 5ac946c697 SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup 25 years ago
Jeremy Hylton 9c90105cb0 Several small changes. Mostly reformatting, adding parens. 25 years ago
Jeremy Hylton ddc4fd03b1 Fix 2.1 nested scopes crash reported by Evan Simpson 25 years ago
Guido van Rossum 59d1d2b434 Iterators phase 1. This comprises: 25 years ago
Guido van Rossum f68d8e52e7 Make some private symbols static. 25 years ago
Jeremy Hylton a830b3859b Warn when assigning to __debug__ instead of raising an error. 25 years ago
Jeremy Hylton 897b82123d Make it illegal to assign to __debug__ as per Guido's request. 25 years ago