summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_future5.py
Commit message (Collapse)AuthorAgeFilesLines
* #17303: test_future* now work with unittest test discovery. Patch by ↵Ezio Melotti2013-02-271-2/+2
| | | | Zachary Ware.
* Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro.Mark Dickinson2011-06-251-1/+1
|
* Merged revisions 77727 via svnmerge fromEzio Melotti2010-01-241-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77727 | ezio.melotti | 2010-01-24 18:58:36 +0200 (Sun, 24 Jan 2010) | 1 line use assert[Not]IsInstance where appropriate ........
* Merged revisions 67030-67031 via svnmerge fromBenjamin Peterson2008-10-261-0/+21
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67030 | benjamin.peterson | 2008-10-26 15:21:13 -0500 (Sun, 26 Oct 2008) | 1 line fix __future__ imports when multiple features are given ........ r67031 | benjamin.peterson | 2008-10-26 15:33:19 -0500 (Sun, 26 Oct 2008) | 1 line add forgotten test for r67030 ........
* Fix compileall.py so that it fails on SyntaxErrorsJeremy Hylton2001-04-181-12/+0
| | | | | | | | | | | | | | | | | | | | | The changes cause compilation failures in any file in the Python installation lib directory to cause the install to fail. It looks like compileall.py intended to behave this way, but a change to py_compile.py and a separate bug defeated it. Fixes SF bug #412436 This change affects the test suite, which contains several files that contain intentional errors. The solution is to extend compileall.py with the ability to skip compilation of selected files. In the test suite, rename nocaret.py and test_future[3..7].py to start with badsyntax_nocaret.py and badsyntax_future[3..7].py. Update the makefile to skip compilation of these files. Update the tests to use the name names for imports. NB compileall.py is changed so that compile_dir() returns success only if all recursive calls to compile_dir() also check success.
* Add regression test for future statements. This adds eight files, butJeremy Hylton2001-02-281-0/+12
seven are not tests in their own right; these files are mentioned in regrtest.