[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.129.194.133: ~ $
#! /usr/bin/env python

"""cleanfuture [-d][-r][-v] path ...

-d  Dry run.  Analyze, but don't make any changes to, files.
-r  Recurse.  Search for all .py files in subdirectories too.
-v  Verbose.  Print informative msgs.

Search Python (.py) files for future statements, and remove the features
from such statements that are already mandatory in the version of Python
you're using.

Pass one or more file and/or directory paths.  When a directory path, all
.py files within the directory will be examined, and, if the -r option is
given, likewise recursively for subdirectories.

Overwrites files in place, renaming the originals with a .bak extension. If
cleanfuture finds nothing to change, the file is left alone.  If cleanfuture
does change a file, the changed file is a fixed-point (i.e., running
cleanfuture on the resulting .py file won't change it again, at least not
until you try it again with a later Python release).

Limitations:  You can do these things, but this tool won't help you then:

+ A future statement cannot be mixed with any other statement on the same
  physical line (separated by semicolon).

+ A future statement cannot contain an "as" clause.

Example:  Assuming you're using Python 2.2, if a file containing

from __future__ import nested_scopes, generators

is analyzed by cleanfuture, the line is rewritten to

from __future__ import generators

because nested_scopes is no longer optional in 2.2 but generators is.
"""

import __future__
import tokenize
import os
import sys

dryrun  = 0
recurse = 0
verbose = 0

def errprint(*args):
    strings = map(str, args)
    msg = ' '.join(strings)
    if msg[-1:] != '\n':
        msg += '\n'
    sys.stderr.write(msg)

def main():
    import getopt
    global verbose, recurse, dryrun
    try:
        opts, args = getopt.getopt(sys.argv[1:], "drv")
    except getopt.error, msg:
        errprint(msg)
        return
    for o, a in opts:
        if o == '-d':
            dryrun += 1
        elif o == '-r':
            recurse += 1
        elif o == '-v':
            verbose += 1
    if not args:
        errprint("Usage:", __doc__)
        return
    for arg in args:
        check(arg)

def check(file):
    if os.path.isdir(file) and not os.path.islink(file):
        if verbose:
            print "listing directory", file
        names = os.listdir(file)
        for name in names:
            fullname = os.path.join(file, name)
            if ((recurse and os.path.isdir(fullname) and
                 not os.path.islink(fullname))
                or name.lower().endswith(".py")):
                check(fullname)
        return

    if verbose:
        print "checking", file, "...",
    try:
        f = open(file)
    except IOError, msg:
        errprint("%r: I/O Error: %s" % (file, str(msg)))
        return

    ff = FutureFinder(f, file)
    changed = ff.run()
    if changed:
        ff.gettherest()
    f.close()
    if changed:
        if verbose:
            print "changed."
            if dryrun:
                print "But this is a dry run, so leaving it alone."
        for s, e, line in changed:
            print "%r lines %d-%d" % (file, s+1, e+1)
            for i in range(s, e+1):
                print ff.lines[i],
            if line is None:
                print "-- deleted"
            else:
                print "-- change to:"
                print line,
        if not dryrun:
            bak = file + ".bak"
            if os.path.exists(bak):
                os.remove(bak)
            os.rename(file, bak)
            if verbose:
                print "renamed", file, "to", bak
            g = open(file, "w")
            ff.write(g)
            g.close()
            if verbose:
                print "wrote new", file
    else:
        if verbose:
            print "unchanged."

class FutureFinder:

    def __init__(self, f, fname):
        self.f = f
        self.fname = fname
        self.ateof = 0
        self.lines = [] # raw file lines

        # List of (start_index, end_index, new_line) triples.
        self.changed = []

    # Line-getter for tokenize.
    def getline(self):
        if self.ateof:
            return ""
        line = self.f.readline()
        if line == "":
            self.ateof = 1
        else:
            self.lines.append(line)
        return line

    def run(self):
        STRING = tokenize.STRING
        NL = tokenize.NL
        NEWLINE = tokenize.NEWLINE
        COMMENT = tokenize.COMMENT
        NAME = tokenize.NAME
        OP = tokenize.OP

        changed = self.changed
        get = tokenize.generate_tokens(self.getline).next
        type, token, (srow, scol), (erow, ecol), line = get()

        # Chew up initial comments and blank lines (if any).
        while type in (COMMENT, NL, NEWLINE):
            type, token, (srow, scol), (erow, ecol), line = get()

        # Chew up docstring (if any -- and it may be implicitly catenated!).
        while type is STRING:
            type, token, (srow, scol), (erow, ecol), line = get()

        # Analyze the future stmts.
        while 1:
            # Chew up comments and blank lines (if any).
            while type in (COMMENT, NL, NEWLINE):
                type, token, (srow, scol), (erow, ecol), line = get()

            if not (type is NAME and token == "from"):
                break
            startline = srow - 1    # tokenize is one-based
            type, token, (srow, scol), (erow, ecol), line = get()

            if not (type is NAME and token == "__future__"):
                break
            type, token, (srow, scol), (erow, ecol), line = get()

            if not (type is NAME and token == "import"):
                break
            type, token, (srow, scol), (erow, ecol), line = get()

            # Get the list of features.
            features = []
            while type is NAME:
                features.append(token)
                type, token, (srow, scol), (erow, ecol), line = get()

                if not (type is OP and token == ','):
                    break
                type, token, (srow, scol), (erow, ecol), line = get()

            # A trailing comment?
            comment = None
            if type is COMMENT:
                comment = token
                type, token, (srow, scol), (erow, ecol), line = get()

            if type is not NEWLINE:
                errprint("Skipping file %r; can't parse line %d:\n%s" %
                         (self.fname, srow, line))
                return []

            endline = srow - 1

            # Check for obsolete features.
            okfeatures = []
            for f in features:
                object = getattr(__future__, f, None)
                if object is None:
                    # A feature we don't know about yet -- leave it in.
                    # They'll get a compile-time error when they compile
                    # this program, but that's not our job to sort out.
                    okfeatures.append(f)
                else:
                    released = object.getMandatoryRelease()
                    if released is None or released <= sys.version_info:
                        # Withdrawn or obsolete.
                        pass
                    else:
                        okfeatures.append(f)

            # Rewrite the line if at least one future-feature is obsolete.
            if len(okfeatures) < len(features):
                if len(okfeatures) == 0:
                    line = None
                else:
                    line = "from __future__ import "
                    line += ', '.join(okfeatures)
                    if comment is not None:
                        line += ' ' + comment
                    line += '\n'
                changed.append((startline, endline, line))

            # Loop back for more future statements.

        return changed

    def gettherest(self):
        if self.ateof:
            self.therest = ''
        else:
            self.therest = self.f.read()

    def write(self, f):
        changed = self.changed
        assert changed
        # Prevent calling this again.
        self.changed = []
        # Apply changes in reverse order.
        changed.reverse()
        for s, e, line in changed:
            if line is None:
                # pure deletion
                del self.lines[s:e+1]
            else:
                self.lines[s:e+1] = [line]
        f.writelines(self.lines)
        # Copy over the remainder of the file.
        if self.therest:
            f.write(self.therest)

if __name__ == '__main__':
    main()

Filemanager

Name Type Size Permission Actions
.analyze_dxp.pyo.40009 File 4.64 KB 0644
.byext.pyo.40009 File 4.42 KB 0644
.byteyears.pyo.40009 File 1.37 KB 0644
.checkappend.pyo.40009 File 4.77 KB 0644
.checkpyc.pyo.40009 File 1.93 KB 0644
.classfix.pyo.40009 File 4.09 KB 0644
.copytime.pyo.40009 File 937 B 0644
.crlf.pyo.40009 File 855 B 0644
.cvsfiles.pyo.40009 File 2.11 KB 0644
.db2pickle.pyo.40009 File 3.42 KB 0644
.diff.pyo.40009 File 2.29 KB 0644
.dutree.pyo.40009 File 2.18 KB 0644
.eptags.pyo.40009 File 1.83 KB 0644
.find_recursionlimit.pyo.40009 File 5.54 KB 0644
.finddiv.pyo.40009 File 3.22 KB 0644
.findlinksto.pyo.40009 File 1.39 KB 0644
.findnocoding.pyo.40009 File 3.03 KB 0644
.fixcid.pyo.40009 File 7.67 KB 0644
.fixheader.pyo.40009 File 1.44 KB 0644
.fixnotice.pyo.40009 File 3.42 KB 0644
.fixps.pyo.40009 File 969 B 0644
.ftpmirror.pyo.40009 File 10.81 KB 0644
.google.pyo.40009 File 792 B 0644
.gprof2html.pyo.40009 File 2.22 KB 0644
.h2py.pyo.40009 File 4.3 KB 0644
.hotshotmain.pyo.40009 File 1.82 KB 0644
.ifdef.pyo.40009 File 2.21 KB 0644
.lfcr.pyo.40009 File 880 B 0644
.linktree.pyo.40009 File 1.98 KB 0644
.lll.pyo.40009 File 947 B 0644
.logmerge.pyo.40009 File 4.96 KB 0644
.mailerdaemon.pyo.40009 File 7.19 KB 0644
.md5sum.pyo.40009 File 2.85 KB 0644
.methfix.pyo.40009 File 4.03 KB 0644
.mkreal.pyo.40009 File 1.93 KB 0644
.ndiff.pyo.40009 File 3.77 KB 0644
.nm2def.pyo.40009 File 2.89 KB 0644
.objgraph.pyo.40009 File 4.82 KB 0644
.parseentities.pyo.40009 File 2.03 KB 0644
.patchcheck.pyo.40009 File 7.24 KB 0644
.pathfix.pyo.40009 File 3.75 KB 0644
.pdeps.pyo.40009 File 3.14 KB 0644
.pickle2db.pyo.40009 File 3.73 KB 0644
.pindent.pyo.40009 File 11.3 KB 0644
.ptags.pyo.40009 File 1.37 KB 0644
.pysource.pyo.40009 File 3.92 KB 0644
.redemo.pyo.40009 File 5.16 KB 0644
.reindent-rst.pyo.40009 File 481 B 0644
.rgrep.pyo.40009 File 1.84 KB 0644
.serve.pyo.40009 File 1.56 KB 0644
.setup.pyo.40009 File 548 B 0644
.suff.pyo.40009 File 904 B 0644
.texcheck.pyo.40009 File 8.18 KB 0644
.texi2html.pyo.40009 File 81.37 KB 0644
.treesync.pyo.40009 File 5.85 KB 0644
.untabify.pyo.40009 File 1.55 KB 0644
.which.pyo.40009 File 1.59 KB 0644
.win_add2path.pyo.40009 File 2.02 KB 0644
.xxci.pyo.40009 File 3.93 KB 0644
analyze_dxp.py File 4.11 KB 0755
analyze_dxp.pyc File 4.64 KB 0644
analyze_dxp.pyo File 4.64 KB 0644
byext.py File 3.85 KB 0755
byext.pyc File 4.42 KB 0644
byext.pyo File 4.42 KB 0644
byteyears.py File 1.6 KB 0755
byteyears.pyc File 1.37 KB 0644
byteyears.pyo File 1.37 KB 0644
checkappend.py File 4.55 KB 0755
checkappend.pyc File 4.77 KB 0644
checkappend.pyo File 4.77 KB 0644
checkpyc.py File 1.96 KB 0755
checkpyc.pyc File 1.93 KB 0644
checkpyc.pyo File 1.93 KB 0644
classfix.py File 5.81 KB 0755
classfix.pyc File 4.09 KB 0644
classfix.pyo File 4.09 KB 0644
cleanfuture.py File 8.38 KB 0755
cleanfuture.pyc File 7.22 KB 0644
cleanfuture.pyo File 7.19 KB 0644
combinerefs.py File 4.28 KB 0755
combinerefs.pyc File 4.16 KB 0644
combinerefs.pyo File 4.12 KB 0644
copytime.py File 664 B 0755
copytime.pyc File 937 B 0644
copytime.pyo File 937 B 0644
crlf.py File 611 B 0755
crlf.pyc File 855 B 0644
crlf.pyo File 855 B 0644
cvsfiles.py File 1.75 KB 0755
cvsfiles.pyc File 2.11 KB 0644
cvsfiles.pyo File 2.11 KB 0644
db2pickle.py File 3.49 KB 0755
db2pickle.pyc File 3.42 KB 0644
db2pickle.pyo File 3.42 KB 0644
diff.py File 1.98 KB 0755
diff.pyc File 2.29 KB 0644
diff.pyo File 2.29 KB 0644
dutree.py File 1.58 KB 0755
dutree.pyc File 2.18 KB 0644
dutree.pyo File 2.18 KB 0644
eptags.py File 1.45 KB 0755
eptags.pyc File 1.83 KB 0644
eptags.pyo File 1.83 KB 0644
find_recursionlimit.py File 3.39 KB 0755
find_recursionlimit.pyc File 5.54 KB 0644
find_recursionlimit.pyo File 5.54 KB 0644
finddiv.py File 2.46 KB 0755
finddiv.pyc File 3.22 KB 0644
finddiv.pyo File 3.22 KB 0644
findlinksto.py File 1.04 KB 0755
findlinksto.pyc File 1.39 KB 0644
findlinksto.pyo File 1.39 KB 0644
findnocoding.py File 2.64 KB 0755
findnocoding.pyc File 3.03 KB 0644
findnocoding.pyo File 3.03 KB 0644
fixcid.py File 9.75 KB 0755
fixcid.pyc File 7.67 KB 0644
fixcid.pyo File 7.67 KB 0644
fixdiv.py File 13.57 KB 0755
fixdiv.pyc File 13.7 KB 0644
fixdiv.pyo File 13.62 KB 0644
fixheader.py File 1.16 KB 0755
fixheader.pyc File 1.44 KB 0644
fixheader.pyo File 1.44 KB 0644
fixnotice.py File 2.98 KB 0755
fixnotice.pyc File 3.42 KB 0644
fixnotice.pyo File 3.42 KB 0644
fixps.py File 894 B 0755
fixps.pyc File 969 B 0644
fixps.pyo File 969 B 0644
ftpmirror.py File 12.55 KB 0755
ftpmirror.pyc File 10.81 KB 0644
ftpmirror.pyo File 10.81 KB 0644
google.py File 520 B 0755
google.pyc File 792 B 0644
google.pyo File 792 B 0644
gprof2html.py File 2.12 KB 0755
gprof2html.pyc File 2.22 KB 0644
gprof2html.pyo File 2.22 KB 0644
h2py.py File 5.82 KB 0755
h2py.pyc File 4.3 KB 0644
h2py.pyo File 4.3 KB 0644
hotshotmain.py File 1.45 KB 0755
hotshotmain.pyc File 1.82 KB 0644
hotshotmain.pyo File 1.82 KB 0644
ifdef.py File 3.63 KB 0755
ifdef.pyc File 2.21 KB 0644
ifdef.pyo File 2.21 KB 0644
lfcr.py File 619 B 0755
lfcr.pyc File 880 B 0644
lfcr.pyo File 880 B 0644
linktree.py File 2.37 KB 0755
linktree.pyc File 1.98 KB 0644
linktree.pyo File 1.98 KB 0644
lll.py File 747 B 0755
lll.pyc File 947 B 0644
lll.pyo File 947 B 0644
logmerge.py File 5.45 KB 0755
logmerge.pyc File 4.96 KB 0644
logmerge.pyo File 4.96 KB 0644
mailerdaemon.py File 7.76 KB 0755
mailerdaemon.pyc File 7.19 KB 0644
mailerdaemon.pyo File 7.19 KB 0644
md5sum.py File 2.33 KB 0755
md5sum.pyc File 2.85 KB 0644
md5sum.pyo File 2.85 KB 0644
methfix.py File 5.33 KB 0755
methfix.pyc File 4.03 KB 0644
methfix.pyo File 4.03 KB 0644
mkreal.py File 1.59 KB 0755
mkreal.pyc File 1.93 KB 0644
mkreal.pyo File 1.93 KB 0644
ndiff.py File 3.72 KB 0755
ndiff.pyc File 3.77 KB 0644
ndiff.pyo File 3.77 KB 0644
nm2def.py File 2.39 KB 0755
nm2def.pyc File 2.89 KB 0644
nm2def.pyo File 2.89 KB 0644
objgraph.py File 5.88 KB 0755
objgraph.pyc File 4.82 KB 0644
objgraph.pyo File 4.82 KB 0644
parseentities.py File 1.68 KB 0755
parseentities.pyc File 2.03 KB 0644
parseentities.pyo File 2.03 KB 0644
patchcheck.py File 5.42 KB 0755
patchcheck.pyc File 7.24 KB 0644
patchcheck.pyo File 7.24 KB 0644
pathfix.py File 4.23 KB 0755
pathfix.pyc File 3.75 KB 0644
pathfix.pyo File 3.75 KB 0644
pdeps.py File 3.84 KB 0755
pdeps.pyc File 3.14 KB 0644
pdeps.pyo File 3.14 KB 0644
pickle2db.py File 3.85 KB 0755
pickle2db.pyc File 3.73 KB 0644
pickle2db.pyo File 3.73 KB 0644
pindent.py File 16.77 KB 0755
pindent.pyc File 11.3 KB 0644
pindent.pyo File 11.3 KB 0644
ptags.py File 1.2 KB 0755
ptags.pyc File 1.37 KB 0644
ptags.pyo File 1.37 KB 0644
pysource.py File 3.76 KB 0755
pysource.pyc File 3.92 KB 0644
pysource.pyo File 3.92 KB 0644
redemo.py File 5.66 KB 0755
redemo.pyc File 5.16 KB 0644
redemo.pyo File 5.16 KB 0644
reindent-rst.py File 278 B 0755
reindent-rst.pyc File 481 B 0644
reindent-rst.pyo File 481 B 0644
reindent.py File 10.58 KB 0755
reindent.pyc File 8.77 KB 0644
reindent.pyo File 8.74 KB 0644
rgrep.py File 1.46 KB 0755
rgrep.pyc File 1.84 KB 0644
rgrep.pyo File 1.84 KB 0644
serve.py File 1.12 KB 0755
serve.pyc File 1.56 KB 0644
serve.pyo File 1.56 KB 0644
setup.py File 421 B 0755
setup.pyc File 548 B 0644
setup.pyo File 548 B 0644
suff.py File 622 B 0755
suff.pyc File 904 B 0644
suff.pyo File 904 B 0644
svneol.py File 2.86 KB 0755
svneol.pyc File 2.83 KB 0644
svneol.pyo File 2.76 KB 0644
texcheck.py File 9.04 KB 0755
texcheck.pyc File 8.18 KB 0644
texcheck.pyo File 8.18 KB 0644
texi2html.py File 68.19 KB 0755
texi2html.pyc File 81.37 KB 0644
texi2html.pyo File 81.37 KB 0644
treesync.py File 5.65 KB 0755
treesync.pyc File 5.85 KB 0644
treesync.pyo File 5.85 KB 0644
untabify.py File 1.19 KB 0755
untabify.pyc File 1.55 KB 0644
untabify.pyo File 1.55 KB 0644
which.py File 1.59 KB 0755
which.pyc File 1.59 KB 0644
which.pyo File 1.59 KB 0644
win_add2path.py File 1.58 KB 0755
win_add2path.pyc File 2.02 KB 0644
win_add2path.pyo File 2.02 KB 0644
xxci.py File 2.73 KB 0755
xxci.pyc File 3.93 KB 0644
xxci.pyo File 3.93 KB 0644