~pythonregexp2.7/python/issue2636-24

« back to all changes in this revision

Viewing changes to Lib/lib2to3/fixes/fix_ws_comma.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 13:47:31 UTC
  • mfrom: (39021.1.404 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921134731-rudomuzeh1b2tz1y
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
from .. import pytree
9
9
from ..pgen2 import token
10
 
from .import basefix
 
10
from .. import fixer_base
11
11
 
12
 
class FixWsComma(basefix.BaseFix):
 
12
class FixWsComma(fixer_base.BaseFix):
13
13
 
14
14
    explicit = True # The user must ask for this fixers
15
15