2008-03-19 02:04:44 -03:00
|
|
|
#!/usr/bin/env python2.5
|
|
|
|
""" Test suite for the fixer modules """
|
|
|
|
# Author: Collin Winter
|
|
|
|
|
|
|
|
# Testing imports
|
|
|
|
try:
|
|
|
|
from tests import support
|
|
|
|
except ImportError:
|
2008-03-28 07:52:42 -03:00
|
|
|
from . import support
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
# Python imports
|
|
|
|
import unittest
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
from os.path import dirname, pathsep
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
# Local imports
|
|
|
|
from .. import pygram
|
|
|
|
from .. import pytree
|
|
|
|
from .. import refactor
|
2008-04-09 23:50:50 -03:00
|
|
|
from ..fixes import util
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
class Options:
|
|
|
|
def __init__(self, **kwargs):
|
2008-03-19 02:33:36 -03:00
|
|
|
for k, v in list(kwargs.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
setattr(self, k, v)
|
|
|
|
|
|
|
|
self.verbose = False
|
|
|
|
|
|
|
|
class FixerTestCase(support.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
options = Options(fix=[self.fixer], print_function=False)
|
|
|
|
self.refactor = refactor.RefactoringTool(options)
|
|
|
|
self.fixer_log = []
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
self.filename = "<string>"
|
2008-03-19 02:04:44 -03:00
|
|
|
|
Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r62425 | andrew.kuchling | 2008-04-21 03:45:57 +0200 (Mon, 21 Apr 2008) | 1 line
Comment typo
................
r62426 | mark.dickinson | 2008-04-21 03:55:50 +0200 (Mon, 21 Apr 2008) | 2 lines
Silence 'r may be used uninitialized' compiler warning.
................
r62427 | andrew.kuchling | 2008-04-21 04:08:00 +0200 (Mon, 21 Apr 2008) | 1 line
Markup fix
................
r62428 | andrew.kuchling | 2008-04-21 04:08:13 +0200 (Mon, 21 Apr 2008) | 1 line
Wording changes
................
r62429 | andrew.kuchling | 2008-04-21 04:14:24 +0200 (Mon, 21 Apr 2008) | 1 line
Add various items
................
r62434 | thomas.heller | 2008-04-21 15:46:55 +0200 (Mon, 21 Apr 2008) | 1 line
Fix typo.
................
r62435 | david.goodger | 2008-04-21 16:40:22 +0200 (Mon, 21 Apr 2008) | 1 line
corrections ("reStructuredText" is one word)
................
r62436 | david.goodger | 2008-04-21 16:43:33 +0200 (Mon, 21 Apr 2008) | 1 line
capitalization
................
r62441 | gregory.p.smith | 2008-04-21 19:46:40 +0200 (Mon, 21 Apr 2008) | 2 lines
explicitly flush after the ... since there wasn't a newline
................
r62444 | jeroen.ruigrok | 2008-04-21 22:15:39 +0200 (Mon, 21 Apr 2008) | 2 lines
Windows x64 also falls under VER_PLATFORM_WIN32_NT.
................
r62446 | gregory.p.smith | 2008-04-21 23:31:08 +0200 (Mon, 21 Apr 2008) | 3 lines
If sys.stdin is not a tty, fall back to default_getpass after printing
a warning instead of failing with a termios.error.
................
r62447 | mark.dickinson | 2008-04-22 00:32:24 +0200 (Tue, 22 Apr 2008) | 8 lines
test_math and test_cmath are failing on the FreeBSD 6.2 trunk buildbot,
apparently because tanh(-0.) loses the sign of zero on that platform.
If true, this is a bug in FreeBSD.
Added a configure test to verify this. I still need to figure out
how best to deal with this failure.
................
r62448 | amaury.forgeotdarc | 2008-04-22 00:35:30 +0200 (Tue, 22 Apr 2008) | 7 lines
Issue 2665: On Windows, sys.stderr does not contain a valid file when running without a console.
It seems to work, but will fail at the first flush.
This causes IDLE to crash when too many warnings are printed.
Will backport.
................
r62450 | benjamin.peterson | 2008-04-22 00:57:00 +0200 (Tue, 22 Apr 2008) | 2 lines
Fix Sphinx warnings
................
r62451 | mark.dickinson | 2008-04-22 02:54:27 +0200 (Tue, 22 Apr 2008) | 3 lines
Make configure test for tanh(-0.) == -0. committed in r62447 actually
work. (The test wasn't properly linked with libm. Sigh.)
................
r62452 | benjamin.peterson | 2008-04-22 04:16:03 +0200 (Tue, 22 Apr 2008) | 2 lines
Various io doc updates
................
r62453 | neal.norwitz | 2008-04-22 07:07:47 +0200 (Tue, 22 Apr 2008) | 1 line
Add Thomas Lee
................
r62454 | gregory.p.smith | 2008-04-22 10:08:41 +0200 (Tue, 22 Apr 2008) | 8 lines
Major improvements:
* Default to using /dev/tty for the password prompt and input before
falling back to sys.stdin and sys.stderr.
* Use sys.stderr instead of sys.stdout.
* print the 'password may be echoed' warning to stream used to display
the prompt rather than always sys.stderr.
* warn() with GetPassWarning when input may be echoed.
................
r62455 | gregory.p.smith | 2008-04-22 10:11:33 +0200 (Tue, 22 Apr 2008) | 2 lines
update the getpass entry
................
r62463 | amaury.forgeotdarc | 2008-04-22 23:14:41 +0200 (Tue, 22 Apr 2008) | 5 lines
Issue #2670: urllib2.build_opener() failed when two handlers
derive the same default base class.
Will backport.
................
r62465 | skip.montanaro | 2008-04-23 00:45:09 +0200 (Wed, 23 Apr 2008) | 3 lines
Factor in documentation changes from issue 1753732.
................
r62466 | gregory.p.smith | 2008-04-23 03:06:42 +0200 (Wed, 23 Apr 2008) | 2 lines
syntax fixup
................
r62469 | benjamin.peterson | 2008-04-23 22:38:06 +0200 (Wed, 23 Apr 2008) | 2 lines
#2673 Fix example typo in optparse docs
................
r62474 | martin.v.loewis | 2008-04-24 11:50:50 +0200 (Thu, 24 Apr 2008) | 2 lines
Add Guilherme Polo.
................
r62476 | martin.v.loewis | 2008-04-24 15:16:36 +0200 (Thu, 24 Apr 2008) | 3 lines
Remove Py_Refcnt, Py_Type, Py_Size, as they were added only
for backwards compatibility, yet 2.5 did not have them at all.
................
r62477 | martin.v.loewis | 2008-04-24 15:17:24 +0200 (Thu, 24 Apr 2008) | 2 lines
Fix typo.
................
r62478 | martin.v.loewis | 2008-04-24 15:18:03 +0200 (Thu, 24 Apr 2008) | 2 lines
Add Jesus Cea.
................
r62480 | amaury.forgeotdarc | 2008-04-24 20:07:05 +0200 (Thu, 24 Apr 2008) | 4 lines
Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).
This happened only when 8 is the first digit.
Credits go to Lukas Meuser.
................
r62485 | amaury.forgeotdarc | 2008-04-24 22:10:26 +0200 (Thu, 24 Apr 2008) | 5 lines
Disable gc when running test_trace, or we may record the __del__ of collected objects.
See http://mail.python.org/pipermail/python-checkins/2008-April/068633.html
the extra events perfectly match several calls to socket._fileobject.__del__()
................
r62492 | neal.norwitz | 2008-04-25 05:40:17 +0200 (Fri, 25 Apr 2008) | 1 line
Fix typo (now -> no)
................
r62497 | armin.rigo | 2008-04-25 11:35:18 +0200 (Fri, 25 Apr 2008) | 2 lines
A new crasher.
................
r62498 | thomas.heller | 2008-04-25 17:44:16 +0200 (Fri, 25 Apr 2008) | 1 line
Add from_buffer and from_buffer_copy class methods to ctypes types.
................
r62500 | mark.dickinson | 2008-04-25 18:59:09 +0200 (Fri, 25 Apr 2008) | 3 lines
Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.
................
r62507 | benjamin.peterson | 2008-04-25 23:43:56 +0200 (Fri, 25 Apr 2008) | 2 lines
Allow test_import to work when it is invoked directly
................
r62513 | georg.brandl | 2008-04-26 20:31:07 +0200 (Sat, 26 Apr 2008) | 2 lines
#2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky.
................
r62514 | georg.brandl | 2008-04-26 20:32:17 +0200 (Sat, 26 Apr 2008) | 2 lines
Add missing return type to dealloc.
................
r62516 | alexandre.vassalotti | 2008-04-27 02:52:24 +0200 (Sun, 27 Apr 2008) | 2 lines
Fixed URL of PEP 205 in weakref's module docstring.
................
r62521 | georg.brandl | 2008-04-27 11:39:59 +0200 (Sun, 27 Apr 2008) | 2 lines
#2677: add note that not all functions may accept keyword args.
................
r62531 | georg.brandl | 2008-04-27 19:38:55 +0200 (Sun, 27 Apr 2008) | 2 lines
Use correct XHTML tags.
................
r62535 | benjamin.peterson | 2008-04-27 20:14:39 +0200 (Sun, 27 Apr 2008) | 2 lines
#2700 Document PyNumber_ToBase
................
r62545 | skip.montanaro | 2008-04-27 22:53:57 +0200 (Sun, 27 Apr 2008) | 1 line
minor wording changes, rewrap a few lines
................
r62546 | kurt.kaiser | 2008-04-27 23:07:41 +0200 (Sun, 27 Apr 2008) | 7 lines
Home / Control-A toggles between left margin and end of leading white
space. Patch 1196903 Jeff Shute.
M idlelib/PyShell.py
M idlelib/EditorWindow.py
M idlelib/NEWS.txt
................
r62548 | kurt.kaiser | 2008-04-27 23:38:05 +0200 (Sun, 27 Apr 2008) | 2 lines
Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.
................
r62549 | kurt.kaiser | 2008-04-27 23:52:19 +0200 (Sun, 27 Apr 2008) | 4 lines
Autocompletion of filenames now support alternate separators, e.g. the
'/' char on Windows. Patch 2061 Tal Einat.
................
r62550 | skip.montanaro | 2008-04-28 00:49:56 +0200 (Mon, 28 Apr 2008) | 6 lines
A few small changes:
* The only exception we should catch when trying to import cStringIO is an
ImportError.
* Delete the function signatures embedded in the mk*temp docstrings.
* The tempdir global variable was initialized twice.
................
r62551 | skip.montanaro | 2008-04-28 00:52:02 +0200 (Mon, 28 Apr 2008) | 4 lines
Wrap some long paragraphs and include the default values for optional
function parameters.
................
r62553 | skip.montanaro | 2008-04-28 04:57:23 +0200 (Mon, 28 Apr 2008) | 7 lines
Minor cleanups:
* Avoid creating unused local variables where we can. Where we can't prefix
the unused variables with '_'.
* Avoid shadowing builtins where it won't change the external interface of a
function.
* Use None as default path arg to readmodule and readmodule_ex.
................
r62554 | skip.montanaro | 2008-04-28 04:59:45 +0200 (Mon, 28 Apr 2008) | 6 lines
Correct documentation to match implementation: "Class" instead of
"class_descriptor", "Function" instead of "function_descriptor". Note
default path value for readmodule*. Wrap some long paragraphs. Don't
mention 'inpackage' which isn't part of the public API.
................
r62555 | brett.cannon | 2008-04-28 05:23:50 +0200 (Mon, 28 Apr 2008) | 5 lines
Fix a bug introduced by the warnings rewrite where tracebacks were being
improperly indented.
Closes issue #2699.
................
r62556 | skip.montanaro | 2008-04-28 05:25:37 +0200 (Mon, 28 Apr 2008) | 2 lines
Wrap some long lines.
................
r62557 | skip.montanaro | 2008-04-28 05:27:53 +0200 (Mon, 28 Apr 2008) | 6 lines
Get rid of _test(), _main(), _debug() and _check(). Tests are no longer
needed (better set available in Lib/test/test_robotparser.py). Clean up a
few PEP 8 nits (compound statements on a single line, whitespace around
operators).
................
r62558 | brett.cannon | 2008-04-28 06:50:06 +0200 (Mon, 28 Apr 2008) | 3 lines
Rename the test_traceback_print() function to traceback_print() to prevent
test_capi from automatically calling the function.
................
r62559 | georg.brandl | 2008-04-28 07:16:30 +0200 (Mon, 28 Apr 2008) | 2 lines
Fix markup.
................
r62569 | amaury.forgeotdarc | 2008-04-28 23:07:06 +0200 (Mon, 28 Apr 2008) | 5 lines
test_sundry performs minimal tests (a simple import...) on modules that are not tested otherwise.
Some of them now have tests and can be removed.
Only 70 to go...
................
r62574 | andrew.kuchling | 2008-04-29 04:03:54 +0200 (Tue, 29 Apr 2008) | 1 line
Strip down SSL docs; I'm not managing to get test programs working, so I'll just give a minimal description
................
r62577 | martin.v.loewis | 2008-04-29 08:10:53 +0200 (Tue, 29 Apr 2008) | 2 lines
Add Rodrigo and Heiko.
................
r62593 | nick.coghlan | 2008-04-30 16:23:36 +0200 (Wed, 30 Apr 2008) | 1 line
Update command line usage documentation to reflect 2.6 changes (also includes some minor cleanups). Addresses TODO list issue 2258
................
r62595 | andrew.kuchling | 2008-04-30 18:19:55 +0200 (Wed, 30 Apr 2008) | 1 line
Typo fix
................
r62604 | benjamin.peterson | 2008-04-30 23:03:58 +0200 (Wed, 30 Apr 2008) | 2 lines
make test_support's captured_output a bit more robust when exceptions happen
................
r62605 | georg.brandl | 2008-04-30 23:08:42 +0200 (Wed, 30 Apr 2008) | 2 lines
#1748: use functools.wraps instead of rolling own metadata update.
................
r62606 | benjamin.peterson | 2008-04-30 23:25:55 +0200 (Wed, 30 Apr 2008) | 2 lines
Remove some from __future__ import with_statements
................
r62608 | benjamin.peterson | 2008-05-01 00:03:36 +0200 (Thu, 01 May 2008) | 2 lines
Fix typo in whatsnew
................
r62616 | georg.brandl | 2008-05-01 20:24:32 +0200 (Thu, 01 May 2008) | 2 lines
Fix synopsis.
................
r62626 | brett.cannon | 2008-05-02 04:25:09 +0200 (Fri, 02 May 2008) | 6 lines
Fix a backwards-compatibility mistake where a new optional argument for
warnings.showwarning() was being used. This broke pre-existing replacements for
the function since they didn't support the extra argument.
Closes issue 2705.
................
r62627 | gregory.p.smith | 2008-05-02 09:26:52 +0200 (Fri, 02 May 2008) | 20 lines
This should fix issue2632. A long description of the two competing
problems is in the bug report (one old, one recently introduced trying
to fix the old one). In short:
buffer data during socket._fileobject.read() and readlines() within a
cStringIO object instead of a [] of str()s returned from the recv()
call.
This prevents excessive memory use due to the size parameter being
passed to recv() being grossly larger than the actual size of the data
returned *and* prevents excessive cpu usage due to looping in python
calling recv() with a very tiny size value if min() is used as the
previous memory-use bug "fix" did.
It also documents what the socket._fileobject._rbufsize member is
actually used for.
This is a candidate for back porting to 2.5.
................
r62636 | mark.hammond | 2008-05-02 14:48:15 +0200 (Fri, 02 May 2008) | 2 lines
#2581: Vista UAC/elevation support for bdist_wininst
................
r62638 | facundo.batista | 2008-05-02 19:39:00 +0200 (Fri, 02 May 2008) | 3 lines
Fixed some test structures. Thanks Mark Dickinson.
................
r62644 | ronald.oussoren | 2008-05-02 21:45:11 +0200 (Fri, 02 May 2008) | 7 lines
Fix for issue #2573: Can't change the framework name on OS X builds
This introduces a new configure option: --with-framework-name=NAME
(defaulting to 'Python'). This allows you to install several copies
of the Python framework with different names (such as a normal build
and a debug build).
................
r62645 | ronald.oussoren | 2008-05-02 21:58:56 +0200 (Fri, 02 May 2008) | 2 lines
Finish fix for issue2573, previous patch was incomplete.
................
r62647 | martin.v.loewis | 2008-05-02 23:30:20 +0200 (Fri, 02 May 2008) | 13 lines
Merged revisions 62263-62646 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r62470 | david.wolever | 2008-04-24 02:11:07 +0200 (Do, 24 Apr 2008) | 3 lines
Fixed up and applied the patch for #2431 -- speeding up 2to3 with a lookup table.
........
r62646 | martin.v.loewis | 2008-05-02 23:29:27 +0200 (Fr, 02 Mai 2008) | 2 lines
Fix whitespace.
........
................
r62648 | ronald.oussoren | 2008-05-02 23:42:35 +0200 (Fri, 02 May 2008) | 4 lines
Fix for #1905: PythonLauncher not working correctly on OSX 10.5/Leopard
This fixes both Python Launchar and the terminalcommand module.
................
r62651 | ronald.oussoren | 2008-05-02 23:54:56 +0200 (Fri, 02 May 2008) | 2 lines
Fix for issue #2520 (cannot import macerrors)
................
r62652 | benjamin.peterson | 2008-05-03 00:12:58 +0200 (Sat, 03 May 2008) | 2 lines
capitalization nit for reStructuredText
................
r62653 | brett.cannon | 2008-05-03 03:02:41 +0200 (Sat, 03 May 2008) | 2 lines
Fix some indentation errors.
................
r62656 | brett.cannon | 2008-05-03 05:19:39 +0200 (Sat, 03 May 2008) | 6 lines
Fix the C implementation of 'warnings' to infer the filename of the module that
raised an exception properly when __file__ is not set, __name__ == '__main__',
and sys.argv[0] is a false value.
Closes issue2743.
................
r62661 | amaury.forgeotdarc | 2008-05-03 14:21:13 +0200 (Sat, 03 May 2008) | 8 lines
In test_io, StatefulIncrementalDecoderTest was not part of the test suite.
And of course, the test failed:
a bytearray was used without reason in io.TextIOWrapper.tell().
The difference is that iterating over bytes (i.e. str in python2.6) returns 1-char bytes,
whereas bytearrays yield integers.
This code should still work with python3.0
................
r62663 | benjamin.peterson | 2008-05-03 17:56:42 +0200 (Sat, 03 May 2008) | 2 lines
The compiling struct is now passed around to all AST helpers (see issue 2720)
................
r62680 | benjamin.peterson | 2008-05-03 23:35:18 +0200 (Sat, 03 May 2008) | 2 lines
Moved testing of builtin types out of test_builtin and into type specific modules
................
r62686 | mark.dickinson | 2008-05-04 04:25:46 +0200 (Sun, 04 May 2008) | 4 lines
Make sure that Context traps and flags dictionaries have values 0 and 1
(as documented) rather than True and False.
................
r62687 | benjamin.peterson | 2008-05-04 05:05:49 +0200 (Sun, 04 May 2008) | 2 lines
Fix typo in whatsnew
................
r62696 | georg.brandl | 2008-05-04 11:15:04 +0200 (Sun, 04 May 2008) | 2 lines
#2752: wrong meaning of '' for socket host.
................
r62699 | christian.heimes | 2008-05-04 13:50:53 +0200 (Sun, 04 May 2008) | 1 line
Added note that Python requires at least Win2k SP4
................
r62700 | gerhard.haering | 2008-05-04 14:59:57 +0200 (Sun, 04 May 2008) | 3 lines
SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONG
#ifdefing was useless.
................
r62701 | gerhard.haering | 2008-05-04 15:15:12 +0200 (Sun, 04 May 2008) | 3 lines
Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. The
sqlite3.Row type is now correctly hashable.
................
r62702 | gerhard.haering | 2008-05-04 15:42:44 +0200 (Sun, 04 May 2008) | 5 lines
Implemented feature request 2157: Converter names are cut off at '('
characters. This avoids the common case of something like 'NUMBER(10)' not
being parsed as 'NUMBER', like expected. Also corrected the docs about
converter names being case-sensitive. They aren't any longer.
................
r62703 | georg.brandl | 2008-05-04 17:45:05 +0200 (Sun, 04 May 2008) | 2 lines
#2757: Remove spare newline.
................
r62711 | benjamin.peterson | 2008-05-04 21:10:02 +0200 (Sun, 04 May 2008) | 2 lines
Fix typo in bugs.rst
................
2008-05-04 19:42:01 -03:00
|
|
|
from itertools import chain
|
|
|
|
for order in (self.refactor.pre_order.values(),\
|
|
|
|
self.refactor.post_order.values()):
|
|
|
|
for fixer in chain(*order):
|
2008-03-19 02:04:44 -03:00
|
|
|
fixer.log = self.fixer_log
|
|
|
|
|
|
|
|
def _check(self, before, after):
|
|
|
|
before = support.reformat(before)
|
|
|
|
after = support.reformat(after)
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
tree = self.refactor.refactor_string(before, self.filename)
|
2008-03-19 02:04:44 -03:00
|
|
|
self.failUnlessEqual(after, str(tree))
|
|
|
|
return tree
|
|
|
|
|
|
|
|
def check(self, before, after, ignore_warnings=False):
|
|
|
|
tree = self._check(before, after)
|
|
|
|
self.failUnless(tree.was_changed)
|
|
|
|
if not ignore_warnings:
|
|
|
|
self.failUnlessEqual(self.fixer_log, [])
|
|
|
|
|
|
|
|
def warns(self, before, after, message, unchanged=False):
|
|
|
|
tree = self._check(before, after)
|
|
|
|
self.failUnless(message in "".join(self.fixer_log))
|
|
|
|
if not unchanged:
|
|
|
|
self.failUnless(tree.was_changed)
|
|
|
|
|
|
|
|
def warns_unchanged(self, before, message):
|
|
|
|
self.warns(before, before, message, unchanged=True)
|
|
|
|
|
|
|
|
def unchanged(self, before, ignore_warnings=False):
|
|
|
|
self._check(before, before)
|
|
|
|
if not ignore_warnings:
|
|
|
|
self.failUnlessEqual(self.fixer_log, [])
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
def assert_runs_after(self, *names):
|
|
|
|
fix = [self.fixer]
|
|
|
|
fix.extend(names)
|
|
|
|
options = Options(fix=fix, print_function=False)
|
|
|
|
r = refactor.RefactoringTool(options)
|
|
|
|
(pre, post) = r.get_fixers()
|
|
|
|
n = "fix_" + self.fixer
|
|
|
|
if post and post[-1].__class__.__module__.endswith(n):
|
|
|
|
# We're the last fixer to run
|
|
|
|
return
|
|
|
|
if pre and pre[-1].__class__.__module__.endswith(n) and not post:
|
|
|
|
# We're the last in pre and post is empty
|
|
|
|
return
|
|
|
|
self.fail("Fixer run order (%s) is incorrect; %s should be last."\
|
|
|
|
%(", ".join([x.__class__.__module__ for x in (pre+post)]), n))
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
class Test_ne(FixerTestCase):
|
|
|
|
fixer = "ne"
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
b = """if x <> y:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """if x != y:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_no_spaces(self):
|
|
|
|
b = """if x<>y:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """if x!=y:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_chained(self):
|
|
|
|
b = """if x<>y<>z:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """if x!=y!=z:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_has_key(FixerTestCase):
|
|
|
|
fixer = "has_key"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """x = d.has_key("x") or d.has_key("y")"""
|
|
|
|
a = """x = "x" in d or "y" in d"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """x = a.b.c.d.has_key("x") ** 3"""
|
|
|
|
a = """x = ("x" in a.b.c.d) ** 3"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """x = a.b.has_key(1 + 2).__repr__()"""
|
|
|
|
a = """x = (1 + 2 in a.b).__repr__()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """x = a.b.has_key(1 + 2).__repr__() ** -3 ** 4"""
|
|
|
|
a = """x = (1 + 2 in a.b).__repr__() ** -3 ** 4"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_5(self):
|
|
|
|
b = """x = a.has_key(f or g)"""
|
|
|
|
a = """x = (f or g) in a"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_6(self):
|
|
|
|
b = """x = a + b.has_key(c)"""
|
|
|
|
a = """x = a + (c in b)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_7(self):
|
|
|
|
b = """x = a.has_key(lambda: 12)"""
|
|
|
|
a = """x = (lambda: 12) in a"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_8(self):
|
|
|
|
b = """x = a.has_key(a for a in b)"""
|
|
|
|
a = """x = (a for a in b) in a"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_9(self):
|
|
|
|
b = """if not a.has_key(b): pass"""
|
|
|
|
a = """if b not in a: pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_10(self):
|
|
|
|
b = """if not a.has_key(b).__repr__(): pass"""
|
|
|
|
a = """if not (b in a).__repr__(): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_11(self):
|
|
|
|
b = """if not a.has_key(b) ** 2: pass"""
|
|
|
|
a = """if not (b in a) ** 2: pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_apply(FixerTestCase):
|
|
|
|
fixer = "apply"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """x = apply(f, g + h)"""
|
|
|
|
a = """x = f(*g + h)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """y = apply(f, g, h)"""
|
|
|
|
a = """y = f(*g, **h)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """z = apply(fs[0], g or h, h or g)"""
|
|
|
|
a = """z = fs[0](*g or h, **h or g)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """apply(f, (x, y) + t)"""
|
|
|
|
a = """f(*(x, y) + t)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_5(self):
|
|
|
|
b = """apply(f, args,)"""
|
|
|
|
a = """f(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_6(self):
|
|
|
|
b = """apply(f, args, kwds,)"""
|
|
|
|
a = """f(*args, **kwds)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# Test that complex functions are parenthesized
|
|
|
|
|
|
|
|
def test_complex_1(self):
|
|
|
|
b = """x = apply(f+g, args)"""
|
|
|
|
a = """x = (f+g)(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_complex_2(self):
|
|
|
|
b = """x = apply(f*g, args)"""
|
|
|
|
a = """x = (f*g)(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_complex_3(self):
|
|
|
|
b = """x = apply(f**g, args)"""
|
|
|
|
a = """x = (f**g)(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# But dotted names etc. not
|
|
|
|
|
|
|
|
def test_dotted_name(self):
|
|
|
|
b = """x = apply(f.g, args)"""
|
|
|
|
a = """x = f.g(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_subscript(self):
|
|
|
|
b = """x = apply(f[x], args)"""
|
|
|
|
a = """x = f[x](*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_call(self):
|
|
|
|
b = """x = apply(f(), args)"""
|
|
|
|
a = """x = f()(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# Extreme case
|
|
|
|
def test_extreme(self):
|
|
|
|
b = """x = apply(a.b.c.d.e.f, args, kwds)"""
|
|
|
|
a = """x = a.b.c.d.e.f(*args, **kwds)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# XXX Comments in weird places still get lost
|
|
|
|
def test_weird_comments(self):
|
|
|
|
b = """apply( # foo
|
|
|
|
f, # bar
|
|
|
|
args)"""
|
|
|
|
a = """f(*args)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# These should *not* be touched
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """apply()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """apply(f)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_3(self):
|
|
|
|
s = """apply(f,)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_4(self):
|
|
|
|
s = """apply(f, args, kwds, extras)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_5(self):
|
|
|
|
s = """apply(f, *args, **kwds)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_6(self):
|
|
|
|
s = """apply(f, *args)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_7(self):
|
|
|
|
s = """apply(func=f, args=args, kwds=kwds)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_8(self):
|
|
|
|
s = """apply(f, args=args, kwds=kwds)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_9(self):
|
|
|
|
s = """apply(f, args, kwds=kwds)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_space_1(self):
|
|
|
|
a = """apply( f, args, kwds)"""
|
|
|
|
b = """f(*args, **kwds)"""
|
|
|
|
self.check(a, b)
|
|
|
|
|
|
|
|
def test_space_2(self):
|
|
|
|
a = """apply( f ,args,kwds )"""
|
|
|
|
b = """f(*args, **kwds)"""
|
|
|
|
self.check(a, b)
|
|
|
|
|
|
|
|
class Test_intern(FixerTestCase):
|
|
|
|
fixer = "intern"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = intern( a )"""
|
|
|
|
a = """x = sys.intern( a )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """y = intern("b" # test
|
|
|
|
)"""
|
|
|
|
a = """y = sys.intern("b" # test
|
|
|
|
)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """z = intern(a+b+c.d, )"""
|
|
|
|
a = """z = sys.intern(a+b+c.d, )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test(self):
|
|
|
|
b = """x = intern(a)"""
|
|
|
|
a = """x = sys.intern(a)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """z = intern(a+b+c.d,)"""
|
|
|
|
a = """z = sys.intern(a+b+c.d,)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """intern("y%s" % 5).replace("y", "")"""
|
|
|
|
a = """sys.intern("y%s" % 5).replace("y", "")"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# These should not be refactored
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
|
|
|
s = """intern(a=1)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """intern(f, g)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """intern(*h)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """intern(**i)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """intern()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_print(FixerTestCase):
|
|
|
|
fixer = "print"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """print 1, 1+1, 1+1+1"""
|
|
|
|
a = """print(1, 1+1, 1+1+1)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_idempotency(self):
|
|
|
|
s = """print()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """print('')"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_idempotency_print_as_function(self):
|
|
|
|
print_stmt = pygram.python_grammar.keywords.pop("print")
|
|
|
|
try:
|
|
|
|
s = """print(1, 1+1, 1+1+1)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """print()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """print('')"""
|
|
|
|
self.unchanged(s)
|
|
|
|
finally:
|
|
|
|
pygram.python_grammar.keywords["print"] = print_stmt
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """print 1, 1+1, 1+1+1"""
|
|
|
|
a = """print(1, 1+1, 1+1+1)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """print 1, 2"""
|
|
|
|
a = """print(1, 2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """print"""
|
|
|
|
a = """print()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple(self):
|
|
|
|
b = """print (a, b, c)"""
|
|
|
|
a = """print((a, b, c))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# trailing commas
|
|
|
|
|
|
|
|
def test_trailing_comma_1(self):
|
|
|
|
b = """print 1, 2, 3,"""
|
|
|
|
a = """print(1, 2, 3, end=' ')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_trailing_comma_2(self):
|
|
|
|
b = """print 1, 2,"""
|
|
|
|
a = """print(1, 2, end=' ')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_trailing_comma_3(self):
|
|
|
|
b = """print 1,"""
|
|
|
|
a = """print(1, end=' ')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# >> stuff
|
|
|
|
|
|
|
|
def test_vargs_without_trailing_comma(self):
|
|
|
|
b = """print >>sys.stderr, 1, 2, 3"""
|
|
|
|
a = """print(1, 2, 3, file=sys.stderr)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_with_trailing_comma(self):
|
|
|
|
b = """print >>sys.stderr, 1, 2,"""
|
|
|
|
a = """print(1, 2, end=' ', file=sys.stderr)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_no_trailing_comma(self):
|
|
|
|
b = """print >>sys.stderr, 1+1"""
|
|
|
|
a = """print(1+1, file=sys.stderr)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_spaces_before_file(self):
|
|
|
|
b = """print >> sys.stderr"""
|
|
|
|
a = """print(file=sys.stderr)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
# With from __future__ import print_function
|
|
|
|
def test_with_future_print_function(self):
|
|
|
|
# XXX: These tests won't actually do anything until the parser
|
|
|
|
# is fixed so it won't crash when it sees print(x=y).
|
|
|
|
# When #2412 is fixed, the try/except block can be taken
|
|
|
|
# out and the tests can be run like normal.
|
2008-03-28 02:29:57 -03:00
|
|
|
# MvL: disable entirely for now, so that it doesn't print to stdout
|
|
|
|
return
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
try:
|
|
|
|
s = "from __future__ import print_function\n"\
|
|
|
|
"print('Hai!', end=' ')"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
b = "print 'Hello, world!'"
|
|
|
|
a = "print('Hello, world!')"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
s = "from __future__ import *\n"\
|
|
|
|
"print('Hai!', end=' ')"
|
|
|
|
self.unchanged(s)
|
|
|
|
except:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.assertFalse(True, "#2421 has been fixed -- printing tests "\
|
|
|
|
"need to be updated!")
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
class Test_exec(FixerTestCase):
|
|
|
|
fixer = "exec"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """ exec code in ns1, ns2"""
|
|
|
|
a = """ exec(code, ns1, ns2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
b = """exec code"""
|
|
|
|
a = """exec(code)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_with_globals(self):
|
|
|
|
b = """exec code in ns"""
|
|
|
|
a = """exec(code, ns)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_with_globals_locals(self):
|
|
|
|
b = """exec code in ns1, ns2"""
|
|
|
|
a = """exec(code, ns1, ns2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_complex_1(self):
|
|
|
|
b = """exec (a.b()) in ns"""
|
|
|
|
a = """exec((a.b()), ns)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_complex_2(self):
|
|
|
|
b = """exec a.b() + c in ns"""
|
|
|
|
a = """exec(a.b() + c, ns)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# These should not be touched
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """exec(code)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """exec (code)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_3(self):
|
|
|
|
s = """exec(code, ns)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_4(self):
|
|
|
|
s = """exec(code, ns1, ns2)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_repr(FixerTestCase):
|
|
|
|
fixer = "repr"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = `1 + 2`"""
|
|
|
|
a = """x = repr(1 + 2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_simple_1(self):
|
|
|
|
b = """x = `1 + 2`"""
|
|
|
|
a = """x = repr(1 + 2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_simple_2(self):
|
|
|
|
b = """y = `x`"""
|
|
|
|
a = """y = repr(x)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_complex(self):
|
|
|
|
b = """z = `y`.__repr__()"""
|
|
|
|
a = """z = repr(y).__repr__()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple(self):
|
|
|
|
b = """x = `1, 2, 3`"""
|
|
|
|
a = """x = repr((1, 2, 3))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_nested(self):
|
|
|
|
b = """x = `1 + `2``"""
|
|
|
|
a = """x = repr(1 + repr(2))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_nested_tuples(self):
|
|
|
|
b = """x = `1, 2 + `3, 4``"""
|
|
|
|
a = """x = repr((1, 2 + repr((3, 4))))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_except(FixerTestCase):
|
|
|
|
fixer = "except"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except (RuntimeError, ImportError), e:
|
|
|
|
pass"""
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except (RuntimeError, ImportError) as e:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_simple(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Foo, e:
|
|
|
|
pass"""
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Foo as e:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_simple_no_space_before_target(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Foo,e:
|
|
|
|
pass"""
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Foo as e:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple_unpack(self):
|
|
|
|
b = """
|
|
|
|
def foo():
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, (f, e):
|
|
|
|
pass
|
|
|
|
except ImportError, e:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo():
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as xxx_todo_changeme:
|
|
|
|
(f, e) = xxx_todo_changeme.args
|
|
|
|
pass
|
|
|
|
except ImportError as e:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_multi_class(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except (RuntimeError, ImportError), e:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except (RuntimeError, ImportError) as e:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_list_unpack(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, [a, b]:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as xxx_todo_changeme:
|
|
|
|
[a, b] = xxx_todo_changeme.args
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_weird_target_1(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, d[5]:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as xxx_todo_changeme:
|
|
|
|
d[5] = xxx_todo_changeme
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_weird_target_2(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, a.foo:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as xxx_todo_changeme:
|
|
|
|
a.foo = xxx_todo_changeme
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_weird_target_3(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, a().foo:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as xxx_todo_changeme:
|
|
|
|
a().foo = xxx_todo_changeme
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-03-28 02:29:57 -03:00
|
|
|
def test_bare_except(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_bare_except_and_else_finally(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception, a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_multi_fixed_excepts_before_bare_except(self):
|
|
|
|
b = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except TypeError, b:
|
|
|
|
pass
|
|
|
|
except Exception, a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except TypeError as b:
|
|
|
|
pass
|
|
|
|
except Exception as a:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
# These should not be touched:
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception:
|
|
|
|
pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_3(self):
|
|
|
|
s = """
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except (Exception, SystemExit):
|
|
|
|
pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_raise(FixerTestCase):
|
|
|
|
fixer = "raise"
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
b = """raise Exception, 5"""
|
|
|
|
a = """raise Exception(5)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """raise Exception,5"""
|
|
|
|
a = """raise Exception(5)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """raise Exception, 5"""
|
|
|
|
a = """raise Exception(5)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_with_comments(self):
|
|
|
|
b = """raise Exception, 5 # foo"""
|
|
|
|
a = """raise Exception(5) # foo"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """raise E, (5, 6) % (a, b) # foo"""
|
|
|
|
a = """raise E((5, 6) % (a, b)) # foo"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """def foo():
|
|
|
|
raise Exception, 5, 6 # foo"""
|
|
|
|
a = """def foo():
|
|
|
|
raise Exception(5).with_traceback(6) # foo"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple_value(self):
|
|
|
|
b = """raise Exception, (5, 6, 7)"""
|
|
|
|
a = """raise Exception(5, 6, 7)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple_detection(self):
|
|
|
|
b = """raise E, (5, 6) % (a, b)"""
|
|
|
|
a = """raise E((5, 6) % (a, b))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple_exc_1(self):
|
|
|
|
b = """raise (((E1, E2), E3), E4), V"""
|
|
|
|
a = """raise E1(V)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tuple_exc_2(self):
|
|
|
|
b = """raise (E1, (E2, E3), E4), V"""
|
|
|
|
a = """raise E1(V)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# These should produce a warning
|
|
|
|
|
|
|
|
def test_string_exc(self):
|
|
|
|
s = """raise 'foo'"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
def test_string_exc_val(self):
|
|
|
|
s = """raise "foo", 5"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
def test_string_exc_val_tb(self):
|
|
|
|
s = """raise "foo", 5, 6"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
# These should result in traceback-assignment
|
|
|
|
|
|
|
|
def test_tb_1(self):
|
|
|
|
b = """def foo():
|
|
|
|
raise Exception, 5, 6"""
|
|
|
|
a = """def foo():
|
|
|
|
raise Exception(5).with_traceback(6)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_2(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception, 5, 6
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception(5).with_traceback(6)
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_3(self):
|
|
|
|
b = """def foo():
|
|
|
|
raise Exception,5,6"""
|
|
|
|
a = """def foo():
|
|
|
|
raise Exception(5).with_traceback(6)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_4(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception,5,6
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception(5).with_traceback(6)
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_5(self):
|
|
|
|
b = """def foo():
|
|
|
|
raise Exception, (5, 6, 7), 6"""
|
|
|
|
a = """def foo():
|
|
|
|
raise Exception(5, 6, 7).with_traceback(6)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_6(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception, (5, 6, 7), 6
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
raise Exception(5, 6, 7).with_traceback(6)
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_throw(FixerTestCase):
|
|
|
|
fixer = "throw"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """g.throw(Exception, 5)"""
|
|
|
|
a = """g.throw(Exception(5))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """g.throw(Exception,5)"""
|
|
|
|
a = """g.throw(Exception(5))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """g.throw(Exception, (5, 6, 7))"""
|
|
|
|
a = """g.throw(Exception(5, 6, 7))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """5 + g.throw(Exception, 5)"""
|
|
|
|
a = """5 + g.throw(Exception(5))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# These should produce warnings
|
|
|
|
|
|
|
|
def test_warn_1(self):
|
|
|
|
s = """g.throw("foo")"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
def test_warn_2(self):
|
|
|
|
s = """g.throw("foo", 5)"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
def test_warn_3(self):
|
|
|
|
s = """g.throw("foo", 5, 6)"""
|
|
|
|
self.warns_unchanged(s, "Python 3 does not support string exceptions")
|
|
|
|
|
|
|
|
# These should not be touched
|
|
|
|
|
|
|
|
def test_untouched_1(self):
|
|
|
|
s = """g.throw(Exception)"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_untouched_2(self):
|
|
|
|
s = """g.throw(Exception(5, 6))"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_untouched_3(self):
|
|
|
|
s = """5 + g.throw(Exception(5, 6))"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
# These should result in traceback-assignment
|
|
|
|
|
|
|
|
def test_tb_1(self):
|
|
|
|
b = """def foo():
|
|
|
|
g.throw(Exception, 5, 6)"""
|
|
|
|
a = """def foo():
|
|
|
|
g.throw(Exception(5).with_traceback(6))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_2(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception, 5, 6)
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception(5).with_traceback(6))
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_3(self):
|
|
|
|
b = """def foo():
|
|
|
|
g.throw(Exception,5,6)"""
|
|
|
|
a = """def foo():
|
|
|
|
g.throw(Exception(5).with_traceback(6))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_4(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception,5,6)
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception(5).with_traceback(6))
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_5(self):
|
|
|
|
b = """def foo():
|
|
|
|
g.throw(Exception, (5, 6, 7), 6)"""
|
|
|
|
a = """def foo():
|
|
|
|
g.throw(Exception(5, 6, 7).with_traceback(6))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_6(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception, (5, 6, 7), 6)
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
g.throw(Exception(5, 6, 7).with_traceback(6))
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_7(self):
|
|
|
|
b = """def foo():
|
|
|
|
a + g.throw(Exception, 5, 6)"""
|
|
|
|
a = """def foo():
|
|
|
|
a + g.throw(Exception(5).with_traceback(6))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_tb_8(self):
|
|
|
|
b = """def foo():
|
|
|
|
a = 5
|
|
|
|
a + g.throw(Exception, 5, 6)
|
|
|
|
b = 6"""
|
|
|
|
a = """def foo():
|
|
|
|
a = 5
|
|
|
|
a + g.throw(Exception(5).with_traceback(6))
|
|
|
|
b = 6"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_long(FixerTestCase):
|
|
|
|
fixer = "long"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """x = long(x)"""
|
|
|
|
a = """x = int(x)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """y = isinstance(x, long)"""
|
|
|
|
a = """y = isinstance(x, int)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """z = type(x) in (int, long)"""
|
|
|
|
a = """z = type(x) in (int, int)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """a = 12L"""
|
|
|
|
a = """a = 12"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_5(self):
|
|
|
|
b = """b = 0x12l"""
|
|
|
|
a = """b = 0x12"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """a = 12"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """b = 0x12"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_3(self):
|
|
|
|
s = """c = 3.14"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = long( x )"""
|
|
|
|
a = """x = int( x )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_dict(FixerTestCase):
|
|
|
|
fixer = "dict"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = "if d. keys ( ) : pass"
|
|
|
|
a = "if list(d. keys ( )) : pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "if d. items ( ) : pass"
|
|
|
|
a = "if list(d. items ( )) : pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "if d. iterkeys ( ) : pass"
|
|
|
|
a = "if iter(d. keys ( )) : pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "[i for i in d. iterkeys( ) ]"
|
|
|
|
a = "[i for i in d. keys( ) ]"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_trailing_comment(self):
|
|
|
|
b = "d.keys() # foo"
|
|
|
|
a = "list(d.keys()) # foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "d.items() # foo"
|
|
|
|
a = "list(d.items()) # foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "d.iterkeys() # foo"
|
|
|
|
a = "iter(d.keys()) # foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """[i for i in d.iterkeys() # foo
|
|
|
|
]"""
|
|
|
|
a = """[i for i in d.keys() # foo
|
|
|
|
]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
2008-04-09 23:50:50 -03:00
|
|
|
for wrapper in util.consuming_calls:
|
2008-03-19 02:04:44 -03:00
|
|
|
s = "s = %s(d.keys())" % wrapper
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "s = %s(d.values())" % wrapper
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "s = %s(d.items())" % wrapper
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_01(self):
|
|
|
|
b = "d.keys()"
|
|
|
|
a = "list(d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "a[0].foo().keys()"
|
|
|
|
a = "list(a[0].foo().keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_02(self):
|
|
|
|
b = "d.items()"
|
|
|
|
a = "list(d.items())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_03(self):
|
|
|
|
b = "d.values()"
|
|
|
|
a = "list(d.values())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_04(self):
|
|
|
|
b = "d.iterkeys()"
|
|
|
|
a = "iter(d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_05(self):
|
|
|
|
b = "d.iteritems()"
|
|
|
|
a = "iter(d.items())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_06(self):
|
|
|
|
b = "d.itervalues()"
|
|
|
|
a = "iter(d.values())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_07(self):
|
|
|
|
s = "list(d.keys())"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_08(self):
|
|
|
|
s = "sorted(d.keys())"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_09(self):
|
|
|
|
b = "iter(d.keys())"
|
|
|
|
a = "iter(list(d.keys()))"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_10(self):
|
|
|
|
b = "foo(d.keys())"
|
|
|
|
a = "foo(list(d.keys()))"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_11(self):
|
|
|
|
b = "for i in d.keys(): print i"
|
|
|
|
a = "for i in list(d.keys()): print i"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_12(self):
|
|
|
|
b = "for i in d.iterkeys(): print i"
|
|
|
|
a = "for i in d.keys(): print i"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_13(self):
|
|
|
|
b = "[i for i in d.keys()]"
|
|
|
|
a = "[i for i in list(d.keys())]"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_14(self):
|
|
|
|
b = "[i for i in d.iterkeys()]"
|
|
|
|
a = "[i for i in d.keys()]"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_15(self):
|
|
|
|
b = "(i for i in d.keys())"
|
|
|
|
a = "(i for i in list(d.keys()))"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_16(self):
|
|
|
|
b = "(i for i in d.iterkeys())"
|
|
|
|
a = "(i for i in d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_17(self):
|
|
|
|
b = "iter(d.iterkeys())"
|
|
|
|
a = "iter(d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_18(self):
|
|
|
|
b = "list(d.iterkeys())"
|
|
|
|
a = "list(d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_19(self):
|
|
|
|
b = "sorted(d.iterkeys())"
|
|
|
|
a = "sorted(d.keys())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_20(self):
|
|
|
|
b = "foo(d.iterkeys())"
|
|
|
|
a = "foo(iter(d.keys()))"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_21(self):
|
|
|
|
b = "print h.iterkeys().next()"
|
|
|
|
a = "print iter(h.keys()).next()"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_22(self):
|
|
|
|
b = "print h.keys()[0]"
|
|
|
|
a = "print list(h.keys())[0]"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_23(self):
|
|
|
|
b = "print list(h.iterkeys().next())"
|
|
|
|
a = "print list(iter(h.keys()).next())"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_24(self):
|
|
|
|
b = "for x in h.keys()[0]: print x"
|
|
|
|
a = "for x in list(h.keys())[0]: print x"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_xrange(FixerTestCase):
|
|
|
|
fixer = "xrange"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = xrange( 10 )"""
|
|
|
|
a = """x = range( 10 )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = xrange( 1 , 10 )"""
|
|
|
|
a = """x = range( 1 , 10 )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = xrange( 0 , 10 , 2 )"""
|
|
|
|
a = """x = range( 0 , 10 , 2 )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-04-09 23:50:50 -03:00
|
|
|
def test_single_arg(self):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """x = xrange(10)"""
|
|
|
|
a = """x = range(10)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-04-09 23:50:50 -03:00
|
|
|
def test_two_args(self):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """x = xrange(1, 10)"""
|
|
|
|
a = """x = range(1, 10)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-04-09 23:50:50 -03:00
|
|
|
def test_three_args(self):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """x = xrange(0, 10, 2)"""
|
|
|
|
a = """x = range(0, 10, 2)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-04-09 23:50:50 -03:00
|
|
|
def test_wrap_in_list(self):
|
|
|
|
b = """x = range(10, 3, 9)"""
|
|
|
|
a = """x = list(range(10, 3, 9))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = foo(range(10, 3, 9))"""
|
|
|
|
a = """x = foo(list(range(10, 3, 9)))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = range(10, 3, 9) + [4]"""
|
|
|
|
a = """x = list(range(10, 3, 9)) + [4]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_xrange_in_for(self):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """for i in xrange(10):\n j=i"""
|
|
|
|
a = """for i in range(10):\n j=i"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-04-09 23:50:50 -03:00
|
|
|
b = """[i for i in xrange(10)]"""
|
|
|
|
a = """[i for i in range(10)]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_range_in_for(self):
|
|
|
|
self.unchanged("for i in range(10): pass")
|
|
|
|
self.unchanged("[i for i in range(10)]")
|
|
|
|
|
|
|
|
def test_in_contains_test(self):
|
|
|
|
self.unchanged("x in range(10, 3, 9)")
|
|
|
|
|
|
|
|
def test_in_consuming_context(self):
|
|
|
|
for call in util.consuming_calls:
|
|
|
|
self.unchanged("a = %s(range(10))" % call)
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
class Test_raw_input(FixerTestCase):
|
|
|
|
fixer = "raw_input"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = raw_input( )"""
|
|
|
|
a = """x = input( )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = raw_input( '' )"""
|
|
|
|
a = """x = input( '' )"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """x = raw_input()"""
|
|
|
|
a = """x = input()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """x = raw_input('')"""
|
|
|
|
a = """x = input('')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """x = raw_input('prompt')"""
|
|
|
|
a = """x = input('prompt')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """x = raw_input(foo(a) + 6)"""
|
|
|
|
a = """x = input(foo(a) + 6)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_funcattrs(FixerTestCase):
|
|
|
|
fixer = "funcattrs"
|
|
|
|
|
|
|
|
attrs = ["closure", "doc", "name", "defaults", "code", "globals", "dict"]
|
|
|
|
|
|
|
|
def test(self):
|
|
|
|
for attr in self.attrs:
|
|
|
|
b = "a.func_%s" % attr
|
|
|
|
a = "a.__%s__" % attr
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "self.foo.func_%s.foo_bar" % attr
|
|
|
|
a = "self.foo.__%s__.foo_bar" % attr
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
|
|
|
for attr in self.attrs:
|
|
|
|
s = "foo(func_%s + 5)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "f(foo.__%s__)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "f(foo.__%s__.foo)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_xreadlines(FixerTestCase):
|
|
|
|
fixer = "xreadlines"
|
|
|
|
|
|
|
|
def test_call(self):
|
|
|
|
b = "for x in f.xreadlines(): pass"
|
|
|
|
a = "for x in f: pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "for x in foo().xreadlines(): pass"
|
|
|
|
a = "for x in foo(): pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "for x in (5 + foo()).xreadlines(): pass"
|
|
|
|
a = "for x in (5 + foo()): pass"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_attr_ref(self):
|
|
|
|
b = "foo(f.xreadlines + 5)"
|
|
|
|
a = "foo(f.__iter__ + 5)"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "foo(f().xreadlines + 5)"
|
|
|
|
a = "foo(f().__iter__ + 5)"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "foo((5 + f()).xreadlines + 5)"
|
|
|
|
a = "foo((5 + f()).__iter__ + 5)"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
|
|
|
s = "for x in f.xreadlines(5): pass"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "for x in f.xreadlines(k=5): pass"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "for x in f.xreadlines(*k, **v): pass"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "foo(xreadlines)"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_imports(FixerTestCase):
|
|
|
|
fixer = "imports"
|
|
|
|
|
|
|
|
modules = {"StringIO": ("io", ["StringIO"]),
|
|
|
|
"cStringIO": ("io", ["StringIO"]),
|
|
|
|
"__builtin__" : ("builtins", ["open", "Exception",
|
|
|
|
"__debug__", "str"]),
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_import_module(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = "import %s" % old
|
|
|
|
a = "import %s" % new
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "import foo, %s, bar" % old
|
|
|
|
a = "import foo, %s, bar" % new
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_import_from(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
for member in members:
|
|
|
|
b = "from %s import %s" % (old, member)
|
|
|
|
a = "from %s import %s" % (new, member)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
s = "from foo import %s" % member
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_import_module_as(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = "import %s as foo_bar" % old
|
|
|
|
a = "import %s as foo_bar" % new
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "import %s as foo_bar" % old
|
|
|
|
a = "import %s as foo_bar" % new
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_import_from_as(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
for member in members:
|
|
|
|
b = "from %s import %s as foo_bar" % (old, member)
|
|
|
|
a = "from %s import %s as foo_bar" % (new, member)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_star(self):
|
|
|
|
for old in self.modules:
|
|
|
|
s = "from %s import *" % old
|
|
|
|
self.warns_unchanged(s, "Cannot handle star imports")
|
|
|
|
|
|
|
|
def test_import_module_usage(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
for member in members:
|
|
|
|
b = """
|
|
|
|
import %s
|
|
|
|
foo(%s, %s.%s)
|
|
|
|
""" % (old, old, old, member)
|
|
|
|
a = """
|
|
|
|
import %s
|
|
|
|
foo(%s, %s.%s)
|
|
|
|
""" % (new, new, new, member)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_from_import_usage(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for old, (new, members) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
for member in members:
|
|
|
|
b = """
|
|
|
|
from %s import %s
|
|
|
|
foo(%s, %s())
|
|
|
|
""" % (old, member, member, member)
|
|
|
|
a = """
|
|
|
|
from %s import %s
|
|
|
|
foo(%s, %s())
|
|
|
|
""" % (new, member, member, member)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_input(FixerTestCase):
|
|
|
|
fixer = "input"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = input( )"""
|
|
|
|
a = """x = eval(input( ))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = input( '' )"""
|
|
|
|
a = """x = eval(input( '' ))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_trailing_comment(self):
|
|
|
|
b = """x = input() # foo"""
|
|
|
|
a = """x = eval(input()) # foo"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_idempotency(self):
|
|
|
|
s = """x = eval(input())"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """x = eval(input(''))"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """x = eval(input(foo(5) + 9))"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """x = input()"""
|
|
|
|
a = """x = eval(input())"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """x = input('')"""
|
|
|
|
a = """x = eval(input(''))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """x = input('prompt')"""
|
|
|
|
a = """x = eval(input('prompt'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """x = input(foo(5) + 9)"""
|
|
|
|
a = """x = eval(input(foo(5) + 9))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_tuple_params(FixerTestCase):
|
|
|
|
fixer = "tuple_params"
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """def foo(): pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """def foo(a, b, c): pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_3(self):
|
|
|
|
s = """def foo(a=3, b=4, c=5): pass"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c)):
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme):
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), d):
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, d):
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), d) -> e:
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, d) -> e:
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_semicolon(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c)): x = 5; y = 7"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme): ((a, b), c) = xxx_todo_changeme; x = 5; y = 7"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_keywords(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), d, e=5) -> z:
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, d, e=5) -> z:
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_varargs(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), d, *vargs, **kwargs) -> z:
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, d, *vargs, **kwargs) -> z:
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_multi_1(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), (d, e, f)) -> z:
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, xxx_todo_changeme1) -> z:
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
(d, e, f) = xxx_todo_changeme1
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_multi_2(self):
|
|
|
|
b = """
|
|
|
|
def foo(x, ((a, b), c), d, (e, f, g), y) -> z:
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(x, xxx_todo_changeme, d, xxx_todo_changeme1, y) -> z:
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
(e, f, g) = xxx_todo_changeme1
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_docstring(self):
|
|
|
|
b = """
|
|
|
|
def foo(((a, b), c), (d, e, f)) -> z:
|
|
|
|
"foo foo foo foo"
|
|
|
|
x = 5"""
|
|
|
|
|
|
|
|
a = """
|
|
|
|
def foo(xxx_todo_changeme, xxx_todo_changeme1) -> z:
|
|
|
|
"foo foo foo foo"
|
|
|
|
((a, b), c) = xxx_todo_changeme
|
|
|
|
(d, e, f) = xxx_todo_changeme1
|
|
|
|
x = 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_no_change(self):
|
|
|
|
s = """lambda x: x + 5"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_lambda_parens_single_arg(self):
|
|
|
|
b = """lambda (x): x + 5"""
|
|
|
|
a = """lambda x: x + 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda(x): x + 5"""
|
|
|
|
a = """lambda x: x + 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda ((((x)))): x + 5"""
|
|
|
|
a = """lambda x: x + 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda((((x)))): x + 5"""
|
|
|
|
a = """lambda x: x + 5"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_simple(self):
|
|
|
|
b = """lambda (x, y): x + f(y)"""
|
|
|
|
a = """lambda x_y: x_y[0] + f(x_y[1])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda(x, y): x + f(y)"""
|
|
|
|
a = """lambda x_y: x_y[0] + f(x_y[1])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda (((x, y))): x + f(y)"""
|
|
|
|
a = """lambda x_y: x_y[0] + f(x_y[1])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda(((x, y))): x + f(y)"""
|
|
|
|
a = """lambda x_y: x_y[0] + f(x_y[1])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_one_tuple(self):
|
|
|
|
b = """lambda (x,): x + f(x)"""
|
|
|
|
a = """lambda x1: x1[0] + f(x1[0])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda (((x,))): x + f(x)"""
|
|
|
|
a = """lambda x1: x1[0] + f(x1[0])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_simple_multi_use(self):
|
|
|
|
b = """lambda (x, y): x + x + f(x) + x"""
|
|
|
|
a = """lambda x_y: x_y[0] + x_y[0] + f(x_y[0]) + x_y[0]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_simple_reverse(self):
|
|
|
|
b = """lambda (x, y): y + x"""
|
|
|
|
a = """lambda x_y: x_y[1] + x_y[0]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_nested(self):
|
|
|
|
b = """lambda (x, (y, z)): x + y + z"""
|
|
|
|
a = """lambda x_y_z: x_y_z[0] + x_y_z[1][0] + x_y_z[1][1]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """lambda (((x, (y, z)))): x + y + z"""
|
|
|
|
a = """lambda x_y_z: x_y_z[0] + x_y_z[1][0] + x_y_z[1][1]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_lambda_nested_multi_use(self):
|
|
|
|
b = """lambda (x, (y, z)): x + y + f(y)"""
|
|
|
|
a = """lambda x_y_z: x_y_z[0] + x_y_z[1][0] + f(x_y_z[1][0])"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_methodattrs(FixerTestCase):
|
|
|
|
fixer = "methodattrs"
|
|
|
|
|
|
|
|
attrs = ["func", "self", "class"]
|
|
|
|
|
|
|
|
def test(self):
|
|
|
|
for attr in self.attrs:
|
|
|
|
b = "a.im_%s" % attr
|
|
|
|
if attr == "class":
|
|
|
|
a = "a.__self__.__class__"
|
|
|
|
else:
|
|
|
|
a = "a.__%s__" % attr
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "self.foo.im_%s.foo_bar" % attr
|
|
|
|
if attr == "class":
|
|
|
|
a = "self.foo.__self__.__class__.foo_bar"
|
|
|
|
else:
|
|
|
|
a = "self.foo.__%s__.foo_bar" % attr
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
|
|
|
for attr in self.attrs:
|
|
|
|
s = "foo(im_%s + 5)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "f(foo.__%s__)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = "f(foo.__%s__.foo)" % attr
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_next(FixerTestCase):
|
|
|
|
fixer = "next"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """it.next()"""
|
|
|
|
a = """next(it)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """a.b.c.d.next()"""
|
|
|
|
a = """next(a.b.c.d)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_3(self):
|
|
|
|
b = """(a + b).next()"""
|
|
|
|
a = """next((a + b))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """a().next()"""
|
|
|
|
a = """next(a())"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_5(self):
|
|
|
|
b = """a().next() + b"""
|
|
|
|
a = """next(a()) + b"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_6(self):
|
|
|
|
b = """c( a().next() + b)"""
|
|
|
|
a = """c( next(a()) + b)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_prefix_preservation_1(self):
|
|
|
|
b = """
|
|
|
|
for a in b:
|
|
|
|
foo(a)
|
|
|
|
a.next()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
for a in b:
|
|
|
|
foo(a)
|
|
|
|
next(a)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_prefix_preservation_2(self):
|
|
|
|
b = """
|
|
|
|
for a in b:
|
|
|
|
foo(a) # abc
|
|
|
|
# def
|
|
|
|
a.next()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
for a in b:
|
|
|
|
foo(a) # abc
|
|
|
|
# def
|
|
|
|
next(a)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_prefix_preservation_3(self):
|
|
|
|
b = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(a)
|
|
|
|
a.next()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(a)
|
|
|
|
a.__next__()
|
|
|
|
"""
|
|
|
|
self.check(b, a, ignore_warnings=True)
|
|
|
|
|
|
|
|
def test_prefix_preservation_4(self):
|
|
|
|
b = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(a) # abc
|
|
|
|
# def
|
|
|
|
a.next()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(a) # abc
|
|
|
|
# def
|
|
|
|
a.__next__()
|
|
|
|
"""
|
|
|
|
self.check(b, a, ignore_warnings=True)
|
|
|
|
|
|
|
|
def test_prefix_preservation_5(self):
|
|
|
|
b = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(foo(a), # abc
|
|
|
|
a.next())
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
next = 5
|
|
|
|
for a in b:
|
|
|
|
foo(foo(a), # abc
|
|
|
|
a.__next__())
|
|
|
|
"""
|
|
|
|
self.check(b, a, ignore_warnings=True)
|
|
|
|
|
|
|
|
def test_prefix_preservation_6(self):
|
|
|
|
b = """
|
|
|
|
for a in b:
|
|
|
|
foo(foo(a), # abc
|
|
|
|
a.next())
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
for a in b:
|
|
|
|
foo(foo(a), # abc
|
|
|
|
next(a))
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_method_1(self):
|
|
|
|
b = """
|
|
|
|
class A:
|
|
|
|
def next(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A:
|
|
|
|
def __next__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_method_2(self):
|
|
|
|
b = """
|
|
|
|
class A(object):
|
|
|
|
def next(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A(object):
|
|
|
|
def __next__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_method_3(self):
|
|
|
|
b = """
|
|
|
|
class A:
|
|
|
|
def next(x):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A:
|
|
|
|
def __next__(x):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_method_4(self):
|
|
|
|
b = """
|
|
|
|
class A:
|
|
|
|
def __init__(self, foo):
|
|
|
|
self.foo = foo
|
|
|
|
|
|
|
|
def next(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A:
|
|
|
|
def __init__(self, foo):
|
|
|
|
self.foo = foo
|
|
|
|
|
|
|
|
def __next__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_method_unchanged(self):
|
|
|
|
s = """
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_shadowing_assign_simple(self):
|
|
|
|
s = """
|
|
|
|
next = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_assign_tuple_1(self):
|
|
|
|
s = """
|
|
|
|
(next, a) = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_assign_tuple_2(self):
|
|
|
|
s = """
|
|
|
|
(a, (b, (next, c)), a) = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_assign_list_1(self):
|
|
|
|
s = """
|
|
|
|
[next, a] = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_assign_list_2(self):
|
|
|
|
s = """
|
|
|
|
[a, [b, [next, c]], a] = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_builtin_assign(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
__builtin__.next = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_builtin_assign_in_tuple(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
(a, __builtin__.next) = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_builtin_assign_in_list(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
[a, __builtin__.next] = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_assign_to_next(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
A.next = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_assign_to_next_in_tuple(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
(a, A.next) = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_assign_to_next_in_list(self):
|
|
|
|
s = """
|
|
|
|
def foo():
|
|
|
|
[a, A.next] = foo
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_shadowing_import_1(self):
|
|
|
|
s = """
|
|
|
|
import foo.bar as next
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_2(self):
|
|
|
|
s = """
|
|
|
|
import bar, bar.foo as next
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_3(self):
|
|
|
|
s = """
|
|
|
|
import bar, bar.foo as next, baz
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_from_1(self):
|
|
|
|
s = """
|
|
|
|
from x import next
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_from_2(self):
|
|
|
|
s = """
|
|
|
|
from x.a import next
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_from_3(self):
|
|
|
|
s = """
|
|
|
|
from x import a, next, b
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_import_from_4(self):
|
|
|
|
s = """
|
|
|
|
from x.a import a, next, b
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_funcdef_1(self):
|
|
|
|
s = """
|
|
|
|
def next(a):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self, a, b):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_funcdef_2(self):
|
|
|
|
b = """
|
|
|
|
def next(a):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def next(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
it.next()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
def next(a):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class A:
|
|
|
|
def __next__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
it.__next__()
|
|
|
|
"""
|
|
|
|
self.warns(b, a, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_global_1(self):
|
|
|
|
s = """
|
|
|
|
def f():
|
|
|
|
global next
|
|
|
|
next = 5
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_global_2(self):
|
|
|
|
s = """
|
|
|
|
def f():
|
|
|
|
global a, next, b
|
|
|
|
next = 5
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_for_simple(self):
|
|
|
|
s = """
|
|
|
|
for next in it():
|
|
|
|
pass
|
|
|
|
|
|
|
|
b = 5
|
|
|
|
c = 6
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_for_tuple_1(self):
|
|
|
|
s = """
|
|
|
|
for next, b in it():
|
|
|
|
pass
|
|
|
|
|
|
|
|
b = 5
|
|
|
|
c = 6
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_shadowing_for_tuple_2(self):
|
|
|
|
s = """
|
|
|
|
for a, (next, c), b in it():
|
|
|
|
pass
|
|
|
|
|
|
|
|
b = 5
|
|
|
|
c = 6
|
|
|
|
"""
|
|
|
|
self.warns_unchanged(s, "Calls to builtin next() possibly shadowed")
|
|
|
|
|
|
|
|
def test_noncall_access_1(self):
|
|
|
|
b = """gnext = g.next"""
|
|
|
|
a = """gnext = g.__next__"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_noncall_access_2(self):
|
|
|
|
b = """f(g.next + 5)"""
|
|
|
|
a = """f(g.__next__ + 5)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_noncall_access_3(self):
|
|
|
|
b = """f(g().next + 5)"""
|
|
|
|
a = """f(g().__next__ + 5)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_nonzero(FixerTestCase):
|
|
|
|
fixer = "nonzero"
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """
|
|
|
|
class A:
|
|
|
|
def __nonzero__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A:
|
|
|
|
def __bool__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """
|
|
|
|
class A(object):
|
|
|
|
def __nonzero__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
class A(object):
|
|
|
|
def __bool__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged_1(self):
|
|
|
|
s = """
|
|
|
|
class A(object):
|
|
|
|
def __bool__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_2(self):
|
|
|
|
s = """
|
|
|
|
class A(object):
|
|
|
|
def __nonzero__(self, a):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_func(self):
|
|
|
|
s = """
|
|
|
|
def __nonzero__(self):
|
|
|
|
pass
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_numliterals(FixerTestCase):
|
|
|
|
fixer = "numliterals"
|
|
|
|
|
|
|
|
def test_octal_1(self):
|
|
|
|
b = """0755"""
|
|
|
|
a = """0o755"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_long_int_1(self):
|
|
|
|
b = """a = 12L"""
|
|
|
|
a = """a = 12"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_long_int_2(self):
|
|
|
|
b = """a = 12l"""
|
|
|
|
a = """a = 12"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_long_hex(self):
|
|
|
|
b = """b = 0x12l"""
|
|
|
|
a = """b = 0x12"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unchanged_int(self):
|
|
|
|
s = """5"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_float(self):
|
|
|
|
s = """5.0"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_octal(self):
|
|
|
|
s = """0o755"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_hex(self):
|
|
|
|
s = """0xABC"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_exp(self):
|
|
|
|
s = """5.0e10"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_complex_int(self):
|
|
|
|
s = """5 + 4j"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_complex_float(self):
|
|
|
|
s = """5.4 + 4.9j"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_unchanged_complex_bare(self):
|
|
|
|
s = """4j"""
|
|
|
|
self.unchanged(s)
|
|
|
|
s = """4.4j"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_renames(FixerTestCase):
|
|
|
|
fixer = "renames"
|
|
|
|
|
|
|
|
modules = {"sys": ("maxint", "maxsize"),
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_import_from(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for mod, (old, new) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = "from %s import %s" % (mod, old)
|
|
|
|
a = "from %s import %s" % (mod, new)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
s = "from foo import %s" % old
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_import_from_as(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for mod, (old, new) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = "from %s import %s as foo_bar" % (mod, old)
|
|
|
|
a = "from %s import %s as foo_bar" % (mod, new)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_import_module_usage(self):
|
2008-03-19 02:33:36 -03:00
|
|
|
for mod, (old, new) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """
|
|
|
|
import %s
|
|
|
|
foo(%s, %s.%s)
|
|
|
|
""" % (mod, mod, mod, old)
|
|
|
|
a = """
|
|
|
|
import %s
|
|
|
|
foo(%s, %s.%s)
|
|
|
|
""" % (mod, mod, mod, new)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def XXX_test_from_import_usage(self):
|
|
|
|
# not implemented yet
|
2008-03-19 02:33:36 -03:00
|
|
|
for mod, (old, new) in list(self.modules.items()):
|
2008-03-19 02:04:44 -03:00
|
|
|
b = """
|
|
|
|
from %s import %s
|
|
|
|
foo(%s, %s)
|
|
|
|
""" % (mod, old, mod, old)
|
|
|
|
a = """
|
|
|
|
from %s import %s
|
|
|
|
foo(%s, %s)
|
|
|
|
""" % (mod, new, mod, new)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_unicode(FixerTestCase):
|
|
|
|
fixer = "unicode"
|
|
|
|
|
|
|
|
def test_unicode_call(self):
|
|
|
|
b = """unicode(x, y, z)"""
|
|
|
|
a = """str(x, y, z)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unicode_literal_1(self):
|
|
|
|
b = '''u"x"'''
|
|
|
|
a = '''"x"'''
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unicode_literal_2(self):
|
|
|
|
b = """ur'x'"""
|
|
|
|
a = """r'x'"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_unicode_literal_3(self):
|
|
|
|
b = """UR'''x'''"""
|
|
|
|
a = """R'''x'''"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_callable(FixerTestCase):
|
|
|
|
fixer = "callable"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """callable( x)"""
|
|
|
|
a = """hasattr( x, '__call__')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if callable(x): pass"""
|
|
|
|
a = """if hasattr(x, '__call__'): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_callable_call(self):
|
|
|
|
b = """callable(x)"""
|
|
|
|
a = """hasattr(x, '__call__')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_callable_should_not_change(self):
|
|
|
|
a = """callable(*x)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
a = """callable(x, y)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
a = """callable(x, kw=y)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
a = """callable()"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
class Test_filter(FixerTestCase):
|
|
|
|
fixer = "filter"
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = filter( foo, 'abc' )"""
|
|
|
|
a = """x = list(filter( foo, 'abc' ))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = filter( None , 'abc' )"""
|
|
|
|
a = """x = [_f for _f in 'abc' if _f]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_filter_basic(self):
|
|
|
|
b = """x = filter(None, 'abc')"""
|
|
|
|
a = """x = [_f for _f in 'abc' if _f]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = len(filter(f, 'abc'))"""
|
|
|
|
a = """x = len(list(filter(f, 'abc')))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = filter(lambda x: x%2 == 0, range(10))"""
|
|
|
|
a = """x = [x for x in range(10) if x%2 == 0]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# Note the parens around x
|
|
|
|
b = """x = filter(lambda (x): x%2 == 0, range(10))"""
|
|
|
|
a = """x = [x for x in range(10) if x%2 == 0]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# XXX This (rare) case is not supported
|
|
|
|
## b = """x = filter(f, 'abc')[0]"""
|
|
|
|
## a = """x = list(filter(f, 'abc'))[0]"""
|
|
|
|
## self.check(b, a)
|
|
|
|
|
|
|
|
def test_filter_nochange(self):
|
|
|
|
a = """b.join(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(a + foo(5)).join(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """iter(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(filter(f, 'abc'))[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(filter(f, 'abc')).pop()"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """tuple(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """any(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """all(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sum(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(filter(f, 'abc'), key=blah)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(filter(f, 'abc'), key=blah)[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """for i in filter(f, 'abc'): pass"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """[x for x in filter(f, 'abc')]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(x for x in filter(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
def test_future_builtins(self):
|
|
|
|
a = "from future_builtins import spam, filter; filter(f, 'ham')"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
b = """from future_builtins import spam; x = filter(f, 'abc')"""
|
|
|
|
a = """from future_builtins import spam; x = list(filter(f, 'abc'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
a = "from future_builtins import *; filter(f, 'ham')"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
class Test_map(FixerTestCase):
|
|
|
|
fixer = "map"
|
|
|
|
|
|
|
|
def check(self, b, a):
|
|
|
|
self.unchanged("from future_builtins import map; " + b, a)
|
|
|
|
FixerTestCase.check(self, b, a)
|
|
|
|
|
|
|
|
def test_prefix_preservation(self):
|
|
|
|
b = """x = map( f, 'abc' )"""
|
|
|
|
a = """x = list(map( f, 'abc' ))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_trailing_comment(self):
|
|
|
|
b = """x = map(f, 'abc') # foo"""
|
|
|
|
a = """x = list(map(f, 'abc')) # foo"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_map_basic(self):
|
|
|
|
b = """x = map(f, 'abc')"""
|
|
|
|
a = """x = list(map(f, 'abc'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = len(map(f, 'abc', 'def'))"""
|
|
|
|
a = """x = len(list(map(f, 'abc', 'def')))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = map(None, 'abc')"""
|
|
|
|
a = """x = list('abc')"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = map(None, 'abc', 'def')"""
|
|
|
|
a = """x = list(map(None, 'abc', 'def'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = map(lambda x: x+1, range(4))"""
|
|
|
|
a = """x = [x+1 for x in range(4)]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
# Note the parens around x
|
|
|
|
b = """x = map(lambda (x): x+1, range(4))"""
|
|
|
|
a = """x = [x+1 for x in range(4)]"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
foo()
|
|
|
|
# foo
|
|
|
|
map(f, x)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
foo()
|
|
|
|
# foo
|
|
|
|
list(map(f, x))
|
|
|
|
"""
|
|
|
|
self.warns(b, a, "You should use a for loop here")
|
|
|
|
|
|
|
|
# XXX This (rare) case is not supported
|
|
|
|
## b = """x = map(f, 'abc')[0]"""
|
|
|
|
## a = """x = list(map(f, 'abc'))[0]"""
|
|
|
|
## self.check(b, a)
|
|
|
|
|
|
|
|
def test_map_nochange(self):
|
|
|
|
a = """b.join(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(a + foo(5)).join(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """iter(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(map(f, 'abc'))[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(map(f, 'abc')).pop()"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """tuple(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """any(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """all(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sum(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(map(f, 'abc'), key=blah)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(map(f, 'abc'), key=blah)[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """for i in map(f, 'abc'): pass"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """[x for x in map(f, 'abc')]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(x for x in map(f, 'abc'))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
def test_future_builtins(self):
|
|
|
|
a = "from future_builtins import spam, map, eggs; map(f, 'ham')"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
b = """from future_builtins import spam, eggs; x = map(f, 'abc')"""
|
|
|
|
a = """from future_builtins import spam, eggs; x = list(map(f, 'abc'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
a = "from future_builtins import *; map(f, 'ham')"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
2008-03-19 02:26:18 -03:00
|
|
|
class Test_zip(FixerTestCase):
|
|
|
|
fixer = "zip"
|
|
|
|
|
|
|
|
def check(self, b, a):
|
|
|
|
self.unchanged("from future_builtins import zip; " + b, a)
|
|
|
|
FixerTestCase.check(self, b, a)
|
|
|
|
|
|
|
|
def test_zip_basic(self):
|
|
|
|
b = """x = zip(a, b, c)"""
|
|
|
|
a = """x = list(zip(a, b, c))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = len(zip(a, b))"""
|
|
|
|
a = """x = len(list(zip(a, b)))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_zip_nochange(self):
|
|
|
|
a = """b.join(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(a + foo(5)).join(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """iter(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """list(zip(a, b))[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """set(zip(a, b)).pop()"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """tuple(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """any(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """all(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sum(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(zip(a, b), key=blah)"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """sorted(zip(a, b), key=blah)[0]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """for i in zip(a, b): pass"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """[x for x in zip(a, b)]"""
|
|
|
|
self.unchanged(a)
|
|
|
|
a = """(x for x in zip(a, b))"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
def test_future_builtins(self):
|
|
|
|
a = "from future_builtins import spam, zip, eggs; zip(a, b)"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
b = """from future_builtins import spam, eggs; x = zip(a, b)"""
|
|
|
|
a = """from future_builtins import spam, eggs; x = list(zip(a, b))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
a = "from future_builtins import *; zip(a, b)"
|
|
|
|
self.unchanged(a)
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
class Test_standarderror(FixerTestCase):
|
|
|
|
fixer = "standarderror"
|
|
|
|
|
|
|
|
def test(self):
|
|
|
|
b = """x = StandardError()"""
|
|
|
|
a = """x = Exception()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """x = StandardError(a, b, c)"""
|
|
|
|
a = """x = Exception(a, b, c)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """f(2 + StandardError(a, b, c))"""
|
|
|
|
a = """f(2 + Exception(a, b, c))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_types(FixerTestCase):
|
|
|
|
fixer = "types"
|
|
|
|
|
|
|
|
def test_basic_types_convert(self):
|
|
|
|
b = """types.StringType"""
|
|
|
|
a = """bytes"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """types.DictType"""
|
|
|
|
a = """dict"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """types . IntType"""
|
|
|
|
a = """int"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """types.ListType"""
|
|
|
|
a = """list"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """types.LongType"""
|
|
|
|
a = """int"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """types.NoneType"""
|
|
|
|
a = """type(None)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_idioms(FixerTestCase):
|
|
|
|
fixer = "idioms"
|
|
|
|
|
|
|
|
def test_while(self):
|
|
|
|
b = """while 1: foo()"""
|
|
|
|
a = """while True: foo()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """while 1: foo()"""
|
|
|
|
a = """while True: foo()"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
while 1:
|
|
|
|
foo()
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
while True:
|
|
|
|
foo()
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_while_unchanged(self):
|
|
|
|
s = """while 11: foo()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """while 0: foo()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """while foo(): foo()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """while []: foo()"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_eq_simple(self):
|
|
|
|
b = """type(x) == T"""
|
|
|
|
a = """isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if type(x) == T: pass"""
|
|
|
|
a = """if isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_eq_reverse(self):
|
|
|
|
b = """T == type(x)"""
|
|
|
|
a = """isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if T == type(x): pass"""
|
|
|
|
a = """if isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_eq_expression(self):
|
|
|
|
b = """type(x+y) == d.get('T')"""
|
|
|
|
a = """isinstance(x+y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """type( x + y) == d.get('T')"""
|
|
|
|
a = """isinstance(x + y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_simple(self):
|
|
|
|
b = """type(x) is T"""
|
|
|
|
a = """isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if type(x) is T: pass"""
|
|
|
|
a = """if isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_reverse(self):
|
|
|
|
b = """T is type(x)"""
|
|
|
|
a = """isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if T is type(x): pass"""
|
|
|
|
a = """if isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_expression(self):
|
|
|
|
b = """type(x+y) is d.get('T')"""
|
|
|
|
a = """isinstance(x+y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """type( x + y) is d.get('T')"""
|
|
|
|
a = """isinstance(x + y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_not_simple(self):
|
|
|
|
b = """type(x) is not T"""
|
|
|
|
a = """not isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if type(x) is not T: pass"""
|
|
|
|
a = """if not isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_not_reverse(self):
|
|
|
|
b = """T is not type(x)"""
|
|
|
|
a = """not isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if T is not type(x): pass"""
|
|
|
|
a = """if not isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_is_not_expression(self):
|
|
|
|
b = """type(x+y) is not d.get('T')"""
|
|
|
|
a = """not isinstance(x+y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """type( x + y) is not d.get('T')"""
|
|
|
|
a = """not isinstance(x + y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_ne_simple(self):
|
|
|
|
b = """type(x) != T"""
|
|
|
|
a = """not isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if type(x) != T: pass"""
|
|
|
|
a = """if not isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_ne_reverse(self):
|
|
|
|
b = """T != type(x)"""
|
|
|
|
a = """not isinstance(x, T)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """if T != type(x): pass"""
|
|
|
|
a = """if not isinstance(x, T): pass"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_ne_expression(self):
|
|
|
|
b = """type(x+y) != d.get('T')"""
|
|
|
|
a = """not isinstance(x+y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """type( x + y) != d.get('T')"""
|
|
|
|
a = """not isinstance(x + y, d.get('T'))"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_type_unchanged(self):
|
|
|
|
a = """type(x).__name__"""
|
|
|
|
self.unchanged(a)
|
|
|
|
|
|
|
|
def test_sort_list_call(self):
|
|
|
|
b = """
|
|
|
|
v = list(t)
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = list(foo(b) + d)
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(foo(b) + d)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
while x:
|
|
|
|
v = list(t)
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
while x:
|
|
|
|
v = sorted(t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = list(t)
|
|
|
|
# foo
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(t)
|
|
|
|
# foo
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = r"""
|
|
|
|
v = list( t)
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = r"""
|
|
|
|
v = sorted( t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_sort_simple_expr(self):
|
|
|
|
b = """
|
|
|
|
v = t
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = foo(b)
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(foo(b))
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = b.keys()
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(b.keys())
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = foo(b) + d
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(foo(b) + d)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
while x:
|
|
|
|
v = t
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
while x:
|
|
|
|
v = sorted(t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """
|
|
|
|
v = t
|
|
|
|
# foo
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = """
|
|
|
|
v = sorted(t)
|
|
|
|
# foo
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = r"""
|
|
|
|
v = t
|
|
|
|
v.sort()
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
a = r"""
|
|
|
|
v = sorted(t)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_sort_unchanged(self):
|
|
|
|
s = """
|
|
|
|
v = list(t)
|
|
|
|
w.sort()
|
|
|
|
foo(w)
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
s = """
|
|
|
|
v = list(t)
|
|
|
|
v.sort(u)
|
|
|
|
foo(v)
|
|
|
|
"""
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_basestring(FixerTestCase):
|
|
|
|
fixer = "basestring"
|
|
|
|
|
|
|
|
def test_basestring(self):
|
|
|
|
b = """isinstance(x, basestring)"""
|
|
|
|
a = """isinstance(x, str)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_buffer(FixerTestCase):
|
|
|
|
fixer = "buffer"
|
|
|
|
|
|
|
|
def test_buffer(self):
|
|
|
|
b = """x = buffer(y)"""
|
|
|
|
a = """x = memoryview(y)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
class Test_future(FixerTestCase):
|
|
|
|
fixer = "future"
|
|
|
|
|
|
|
|
def test_future(self):
|
|
|
|
b = """from __future__ import braces"""
|
|
|
|
a = """"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
b = """# comment\nfrom __future__ import braces"""
|
|
|
|
a = """# comment\n"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = """from __future__ import braces\n# comment"""
|
|
|
|
a = """\n# comment"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_run_order(self):
|
|
|
|
self.assert_runs_after('print')
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
class Test_itertools(FixerTestCase):
|
|
|
|
fixer = "itertools"
|
|
|
|
|
|
|
|
def checkall(self, before, after):
|
|
|
|
# Because we need to check with and without the itertools prefix
|
|
|
|
# and on each of the three functions, these loops make it all
|
|
|
|
# much easier
|
|
|
|
for i in ('itertools.', ''):
|
|
|
|
for f in ('map', 'filter', 'zip'):
|
|
|
|
b = before %(i+'i'+f)
|
|
|
|
a = after %(f)
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_0(self):
|
|
|
|
# A simple example -- test_1 covers exactly the same thing,
|
|
|
|
# but it's not quite as clear.
|
|
|
|
b = "itertools.izip(a, b)"
|
|
|
|
a = "zip(a, b)"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
b = """%s(f, a)"""
|
|
|
|
a = """%s(f, a)"""
|
|
|
|
self.checkall(b, a)
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
b = """itertools.ifilterfalse(a, b)"""
|
|
|
|
a = """itertools.filterfalse(a, b)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_4(self):
|
|
|
|
b = """ifilterfalse(a, b)"""
|
|
|
|
a = """filterfalse(a, b)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_space_1(self):
|
|
|
|
b = """ %s(f, a)"""
|
|
|
|
a = """ %s(f, a)"""
|
|
|
|
self.checkall(b, a)
|
|
|
|
|
|
|
|
def test_space_2(self):
|
|
|
|
b = """ itertools.ifilterfalse(a, b)"""
|
|
|
|
a = """ itertools.filterfalse(a, b)"""
|
|
|
|
self.check(b, a)
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
def test_run_order(self):
|
|
|
|
self.assert_runs_after('map', 'zip', 'filter')
|
|
|
|
|
|
|
|
class Test_itertools_imports(FixerTestCase):
|
|
|
|
fixer = 'itertools_imports'
|
|
|
|
|
|
|
|
def test_reduced(self):
|
|
|
|
b = "from itertools import imap, izip, foo"
|
|
|
|
a = "from itertools import foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "from itertools import bar, imap, izip, foo"
|
|
|
|
a = "from itertools import bar, foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_comments(self):
|
|
|
|
b = "#foo\nfrom itertools import imap, izip"
|
|
|
|
a = "#foo\n"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
def test_none(self):
|
|
|
|
b = "from itertools import imap, izip"
|
|
|
|
a = ""
|
|
|
|
self.check(b, a)
|
|
|
|
|
2008-03-23 21:50:58 -03:00
|
|
|
b = "from itertools import izip"
|
|
|
|
a = ""
|
|
|
|
self.check(b, a)
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
def test_import_as(self):
|
|
|
|
b = "from itertools import izip, bar as bang, imap"
|
|
|
|
a = "from itertools import bar as bang"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
s = "from itertools import bar as bang"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
def test_ifilter(self):
|
|
|
|
b = "from itertools import ifilterfalse"
|
|
|
|
a = "from itertools import filterfalse"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "from itertools import imap, ifilterfalse, foo"
|
|
|
|
a = "from itertools import filterfalse, foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
b = "from itertools import bar, ifilterfalse, foo"
|
|
|
|
a = "from itertools import bar, filterfalse, foo"
|
|
|
|
self.check(b, a)
|
|
|
|
|
|
|
|
|
|
|
|
def test_unchanged(self):
|
|
|
|
s = "from itertools import foo"
|
|
|
|
self.unchanged(s)
|
|
|
|
|
|
|
|
class Test_import(FixerTestCase):
|
|
|
|
fixer = "import"
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
FixerTestCase.setUp(self)
|
Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62085 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r62080 | martin.v.loewis | 2008-03-31 07:20:55 +0200 (Mo, 31 Mär 2008) | 9 lines
Merged revisions 61990-62079 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r62017 | david.wolever | 2008-03-28 21:54:37 +0100 (Fr, 28 Mär 2008) | 1 line
Fixed an out-of-date comment.
........
................
r62084 | benjamin.peterson | 2008-03-31 23:57:13 +0200 (Mo, 31 Mär 2008) | 2 lines
PyErr_Warn is decrepated. Use PyErr_WarnEx
................
r62085 | neal.norwitz | 2008-04-01 07:40:43 +0200 (Di, 01 Apr 2008) | 4 lines
Be sure to close the file. 2 places were deleting the file, so it was probably
fine, but the last change may be required for the test to pass on Windows.
Should we always close the mmap too?
................
2008-04-01 03:17:46 -03:00
|
|
|
# Need to replace fix_import's exists method
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
# so we can check that it's doing the right thing
|
|
|
|
self.files_checked = []
|
|
|
|
self.always_exists = True
|
|
|
|
def fake_exists(name):
|
|
|
|
self.files_checked.append(name)
|
|
|
|
return self.always_exists
|
|
|
|
|
|
|
|
from ..fixes import fix_import
|
|
|
|
fix_import.exists = fake_exists
|
|
|
|
|
|
|
|
def check_both(self, b, a):
|
|
|
|
self.always_exists = True
|
|
|
|
FixerTestCase.check(self, b, a)
|
|
|
|
self.always_exists = False
|
|
|
|
FixerTestCase.unchanged(self, b)
|
|
|
|
|
|
|
|
def test_files_checked(self):
|
|
|
|
def p(path):
|
|
|
|
# Takes a unix path and returns a path with correct separators
|
|
|
|
return pathsep.join(path.split("/"))
|
|
|
|
|
|
|
|
self.always_exists = False
|
|
|
|
expected_extensions = ('.py', pathsep, '.pyc', '.so', '.sl', '.pyd')
|
|
|
|
names_to_test = (p("/spam/eggs.py"), "ni.py", p("../../shrubbery.py"))
|
|
|
|
|
|
|
|
for name in names_to_test:
|
|
|
|
self.files_checked = []
|
|
|
|
self.filename = name
|
|
|
|
self.unchanged("import jam")
|
|
|
|
|
|
|
|
if dirname(name): name = dirname(name) + '/jam'
|
|
|
|
else: name = 'jam'
|
|
|
|
expected_checks = set(name + ext for ext in expected_extensions)
|
|
|
|
|
|
|
|
self.failUnlessEqual(set(self.files_checked), expected_checks)
|
|
|
|
|
|
|
|
def test_from(self):
|
2008-03-23 21:50:58 -03:00
|
|
|
b = "from foo import bar, baz"
|
|
|
|
a = "from .foo import bar, baz"
|
|
|
|
self.check_both(b, a)
|
|
|
|
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
b = "from foo import bar"
|
|
|
|
a = "from .foo import bar"
|
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
def test_dotted_from(self):
|
|
|
|
b = "from green.eggs import ham"
|
|
|
|
a = "from .green.eggs import ham"
|
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
def test_from_as(self):
|
|
|
|
b = "from green.eggs import ham as spam"
|
|
|
|
a = "from .green.eggs import ham as spam"
|
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
def test_import(self):
|
|
|
|
b = "import foo"
|
2008-03-23 21:50:58 -03:00
|
|
|
a = "from . import foo"
|
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
b = "import foo, bar"
|
|
|
|
a = "from . import foo, bar"
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
def test_dotted_import(self):
|
|
|
|
b = "import foo.bar"
|
2008-03-23 21:50:58 -03:00
|
|
|
a = "from . import foo.bar"
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
self.check_both(b, a)
|
|
|
|
|
|
|
|
def test_dotted_import_as(self):
|
|
|
|
b = "import foo.bar as bang"
|
2008-03-23 21:50:58 -03:00
|
|
|
a = "from . import foo.bar as bang"
|
Merged revisions 61724-61725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sa, 22 Mär 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 Mär 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 Mär 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 Mär 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 Mär 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 Mär 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 Mär 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 Mär 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 Mär 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 Mär 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 Mär 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 Mär 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sa, 22 Mär 2008) | 2 lines
Install lib2to3.
................
2008-03-21 21:07:09 -03:00
|
|
|
self.check_both(b, a)
|
|
|
|
|
2008-03-19 02:04:44 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import __main__
|
|
|
|
support.run_all_tests(__main__)
|