summaryrefslogtreecommitdiff
path: root/Lib/test/test_compile.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22221: Backported fixes from Python 3 (issue #18960).Serhiy Storchaka2014-09-051-1/+16
* test for 2 arg exec caseBenjamin Peterson2014-08-091-0/+5
* Issue #21591: add test for qualified exec in tuple form.Robert Jordens2014-07-291-0/+16
* Issue #21523: Fix over-pessimistic computation of the stack effect of some op...Antoine Pitrou2014-05-231-2/+41
* Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7.Mark Dickinson2012-11-251-0/+28
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" state...Florent Xicluna2010-03-211-0/+5
* prevent lambda functions from having docstrings #8164Benjamin Peterson2010-03-171-0/+4
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-3/+3
* use assert[Not]In where appropriateEzio Melotti2010-01-231-12/+12
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-5/+1
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-1/+5
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-0/+13
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-5/+5
* allow importing from a module named None if it has an 'as' clauseBenjamin Peterson2009-06-131-0/+2
* prevent import statements from assigning to NoneBenjamin Peterson2009-06-131-0/+6
* Issue #3360: Fix incorrect parsing of "020000000000.0".Mark Dickinson2008-07-161-0/+4
* Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).Amaury Forgeot d'Arc2008-04-241-1/+1
* Properly check for consistency with the third argument ofGeorg Brandl2008-03-291-0/+14
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-281-0/+27
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-1/+7
* Disallow function calls like foo(None=1).Georg Brandl2007-06-071-0/+3
* Fix long-standing bug in name mangling for package importsJeremy Hylton2007-02-271-0/+13
* Remove an unneeded import of 'warnings'.Brett Cannon2006-12-131-1/+0
* Bug #1512814, Fix incorrect lineno's when code at module scopeNeal Norwitz2006-07-101-0/+10
* On 64 bit systems, int literals that use less than 64 bits are now intsNeal Norwitz2006-07-091-0/+15
* Fix SF bug 1441486: bad unary minus folding in compiler.Neil Schemenauer2006-07-091-0/+4
* Add an additional test for bug #1519018.Georg Brandl2006-07-081-0/+2
* Fix SF bug #1519018: 'as' is now validated properly in import statementsNeal Norwitz2006-07-081-0/+4
* Forward port MvL's fix in 43227:Neal Norwitz2006-03-231-0/+4
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-0/+72
* Fix problem handling EXTENDED_ARGs from SF bug # 1333982Neal Norwitz2005-10-241-0/+23
* SF bug #1048870: call arg of lambda not updatingRaymond Hettinger2004-10-241-0/+9
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-0/+41
* Completed the patch for Bug #215126.Raymond Hettinger2004-08-021-0/+57
* Upgrade None assignment SyntaxWarning to a SyntaxError.Raymond Hettinger2004-07-171-0/+15
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-8/+11
* SF patch #736962. Converted test_compile to unittest format.Raymond Hettinger2003-06-231-160/+140
* Added regression test for SF #757818Raymond Hettinger2003-06-201-0/+5
* Fix SF bug #688424, 64-bit test problemsNeal Norwitz2003-02-181-2/+7
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-0/+9
* SF #660455 : patch by NNorwitz.Guido van Rossum2003-02-121-6/+9
* Comment out a test that was anticipating SF patch 661536 -- but thatGuido van Rossum2003-01-281-6/+6
* Verify treatment of unary minus on negative numbers SF bug #660455.Guido van Rossum2003-01-281-0/+7
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-0/+9
* Don't munge __debug__ and leave it that way.Jeremy Hylton2001-11-131-0/+2
* Fix SF buf #480096: Assign to __debug__ still allowedJeremy Hylton2001-11-091-1/+13
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-301-0/+44
* SF bug [#455775] float parsing discrepancy.Tim Peters2001-08-271-0/+15