/usr/lib64/python2.6/distutils
NameSizeModeActions
command/-0755rm
archive_util.py63190644editdlrm
archive_util.pyc54970644editdlrm
archive_util.pyo54970644editdlrm
bcppcompiler.py150910644editdlrm
bcppcompiler.pyc81050644editdlrm
bcppcompiler.pyo81050644editdlrm
ccompiler.py488630644editdlrm
ccompiler.pyc378260644editdlrm
ccompiler.pyo376330644editdlrm
cmd.py192530644editdlrm
cmd.pyc169300644editdlrm
cmd.pyo169300644editdlrm
config.py41640644editdlrm
config.pyc36940644editdlrm
config.pyo36940644editdlrm
core.py90810644editdlrm
core.pyc76980644editdlrm
core.pyo76980644editdlrm
cygwinccompiler.py172920644editdlrm
cygwinccompiler.pyc95290644editdlrm
cygwinccompiler.pyo95290644editdlrm
debug.py2650644editdlrm
debug.pyc2990644editdlrm
debug.pyo2990644editdlrm
dep_util.py36320644editdlrm
dep_util.pyc32000644editdlrm
dep_util.pyo32000644editdlrm
dir_util.py81220644editdlrm
dir_util.pyc69040644editdlrm
dir_util.pyo69040644editdlrm
dist.py480070644editdlrm
dist.pyc381640644editdlrm
dist.pyo381640644editdlrm
emxccompiler.py119120644editdlrm
emxccompiler.pyc75500644editdlrm
emxccompiler.pyo75500644editdlrm
errors.py37200644editdlrm
errors.pyc63580644editdlrm
errors.pyo63580644editdlrm
extension.py103250644editdlrm
extension.pyc74080644editdlrm
extension.pyo71830644editdlrm
fancy_getopt.py184270644editdlrm
fancy_getopt.pyc124940644editdlrm
fancy_getopt.pyo123000644editdlrm
filelist.py128720644editdlrm
filelist.pyc108150644editdlrm
filelist.pyo108150644editdlrm
file_util.py83160644editdlrm
file_util.pyc68710644editdlrm
file_util.pyo68710644editdlrm
log.py16060644editdlrm
log.pyc25710644editdlrm
log.pyo25710644editdlrm
msvc9compiler.py287010644editdlrm
msvc9compiler.pyc205030644editdlrm
msvc9compiler.pyo204310644editdlrm
msvccompiler.py237600644editdlrm
msvccompiler.pyc177950644editdlrm
msvccompiler.pyo177950644editdlrm
mwerkscompiler.py103390644editdlrm
mwerkscompiler.pyc76740644editdlrm
mwerkscompiler.pyo76740644editdlrm
README10140644editdlrm
spawn.py69910644editdlrm
spawn.pyc55980644editdlrm
spawn.pyo55980644editdlrm
sysconfig.py228690644editdlrm
sysconfig.pyc160110644editdlrm
sysconfig.pyo160110644editdlrm
text_file.py151450644editdlrm
text_file.pyc112510644editdlrm
text_file.pyo112510644editdlrm
unixccompiler.py144940644editdlrm
unixccompiler.pyc90970644editdlrm
unixccompiler.pyo90970644editdlrm
util.py219780644editdlrm
util.pyc164260644editdlrm
util.pyo164260644editdlrm
version.py114860644editdlrm
version.pyc72440644editdlrm
version.pyo72440644editdlrm
versionpredicate.py50950644editdlrm
versionpredicate.pyc55970644editdlrm
versionpredicate.pyo55970644editdlrm
__init__.py6700644editdlrm
__init__.pyc4390644editdlrm
__init__.pyo4390644editdlrm
Edit: /usr/lib64/python2.6/distutils/text_file.pyo (11251B)
Ñò «gc@sFdZdZddkTddkZddkZddkZdfd„ƒYZedjoèdZe d „ei ed ƒd d!ƒZ d d d gZ dd dd gZ ddgZdgZdgZd„ZdZeedƒZeieƒeiƒeedd dd dd dd ƒZeddee ƒeedddd dd dd ƒZeddee ƒeedd dddd dd ƒZedd ee ƒeeƒZed!d"eeƒeeddddd#dddƒZed$d%eeƒeeddddd#dddd&dƒZed'd(eeƒeieƒndS()s¼text_file provides the TextFile class, which gives an interface to text files that (optionally) takes care of stripping comments, ignoring blank lines, and joining lines with backslashes.s?$Id: text_file.py 60923 2008-02-21 18:18:37Z guido.van.rossum $iÿÿÿÿ(t*NtTextFilecBsžeZdZhdd6dd6dd6dd6dd6dd6Zddd „Zd „Zd „Zdd „Zdd „Z dd„Z d„Z d„Z d„Z RS(s§ Provides a file-like object that takes care of all the things you commonly want to do when processing a text file that has some line-by-line syntax: strip comments (as long as "#" is your comment character), skip blank lines, join adjacent lines by escaping the newline (ie. backslash at end of line), strip leading and/or trailing whitespace. All of these are optional and independently controllable. Provides a 'warn()' method so you can generate warning messages that report physical line number, even if the logical line in question spans multiple physical lines. Also provides 'unreadline()' for implementing line-at-a-time lookahead. Constructor is called as: TextFile (filename=None, file=None, **options) It bombs (RuntimeError) if both 'filename' and 'file' are None; 'filename' should be a string, and 'file' a file object (or something that provides 'readline()' and 'close()' methods). It is recommended that you supply at least 'filename', so that TextFile can include it in warning messages. If 'file' is not supplied, TextFile creates its own using the 'open()' builtin. The options are all boolean, and affect the value returned by 'readline()': strip_comments [default: true] strip from "#" to end-of-line, as well as any whitespace leading up to the "#" -- unless it is escaped by a backslash lstrip_ws [default: false] strip leading whitespace from each line before returning it rstrip_ws [default: true] strip trailing whitespace (including line terminator!) from each line before returning it skip_blanks [default: true} skip lines that are empty *after* stripping comments and whitespace. (If both lstrip_ws and rstrip_ws are false, then some lines may consist of solely whitespace: these will *not* be skipped, even if 'skip_blanks' is true.) join_lines [default: false] if a backslash is the last non-newline character on a line after stripping comments and whitespace, join the following line to it to form one "logical line"; if N consecutive lines end with a backslash, then N+1 physical lines will be joined to form one logical line. collapse_join [default: false] strip leading whitespace from lines that are joined to their predecessor; only matters if (join_lines and not lstrip_ws) Note that since 'rstrip_ws' can strip the trailing newline, the semantics of 'readline()' must differ from those of the builtin file object's 'readline()' method! In particular, 'readline()' returns None for end-of-file: an empty string might just be a blank line (or an all-whitespace line), if 'rstrip_ws' is true but 'skip_blanks' is not.itstrip_commentst skip_blanksit lstrip_wst rstrip_wst join_linest collapse_joincKsû|djo|djo td‚nxS|iiƒD]B}||jot||||ƒq7t|||i|ƒq7Wx5|iƒD]'}||ijotd|‚qŠqŠW|djo|i|ƒn||_||_d|_ g|_ dS(süConstruct a new TextFile object. At least one of 'filename' (a string) and 'file' (a file-like object) must be supplied. They keyword argument options are described above and affect the values returned by 'readline()'.s7you must supply either or both of 'filename' and 'file'sinvalid TextFile option '%s'iN( tNonet RuntimeErrortdefault_optionstkeystsetattrtKeyErrortopentfilenametfilet current_linetlinebuf(tselfRRtoptionstopt((s+/usr/lib64/python2.6/distutils/text_file.pyt__init__Os$       cCs+||_t|idƒ|_d|_dS(syOpen a new file named 'filename'. This overrides both the 'filename' and 'file' arguments to the constructor.triN(RRRR(RR((s+/usr/lib64/python2.6/distutils/text_file.pyRts cCs,|iiƒd|_d|_d|_dS(siClose the current file and forget everything we know about it (filename, current line number).N(RtcloseRRR(R((s+/usr/lib64/python2.6/distutils/text_file.pyR}s   cCsœg}|djo |i}n|i|idƒt|ƒttfjo|idt|ƒƒn|id|ƒ|it|ƒƒt i |dƒS(Ns, s lines %d-%d: s line %d: t( RRtappendRttypetListTypet TupleTypettupletstrtstringtjoin(Rtmsgtlinetoutmsg((s+/usr/lib64/python2.6/distutils/text_file.pyt gen_error‡s  cCstd|i||ƒ‚dS(Nserror: (t ValueErrorR%(RR"R#((s+/usr/lib64/python2.6/distutils/text_file.pyterror”scCs(tiid|i||ƒdƒdS(sÁPrint (to stderr) a warning message tied to the current logical line in the current file. If the current logical line in the file spans multiple physical lines, the warning refers to the whole range, eg. "lines 3-5". If 'line' supplied, it overrides the current line number; it may be a list or tuple to indicate a range of physical lines, or an integer for a single physical line.s warning: s N(tsyststderrtwriteR%(RR"R#((s+/usr/lib64/python2.6/distutils/text_file.pytwarn—scCs÷|io|id}|id=|Sd}xÄ|iiƒ}|djo d }n|ioµ|o®ti|dƒ}|djoq|djp||ddjoP|ddjodpd}|d|!|}ti|ƒdjoq/qqti|ddƒ}n|i oœ|o•|d jo|i d ƒ|S|i oti |ƒ}n||}t |iƒtjo|idd|id<ss is line 3 \ s continues on next line s # test file s# intervening comment sline 3 \s continues on next linesline 3 continues on next linesline 3 continues on next linecCsS|iƒ}||jod||fGHn$d||fGHdGH|GHdGH|GHdS(Ns ok %d (%s)snot ok %d (%s):s ** expected:s ** received:(R7(tcountt descriptionRtexpected_resulttresult((s+/usr/lib64/python2.6/distutils/text_file.pyt test_inputUs  stest.txttwRRRRis no processingisstrip commentsis strip blanksisdefault processingRisjoin lines without collapsingRisjoin lines with collapsing(R;t __revision__ttypesR(tosR RR9t test_datatmaptsplittresult1tresult2tresult3tresult4tresult5tresult6RCRRtout_fileR*Rtin_filetremove(((s+/usr/lib64/python2.6/distutils/text_file.pytsT $ÿ( %