KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /proc/21572/root/usr/lib64/python2.4/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/21572/root/usr/lib64/python2.4/fileinput.pyc
mò
‚=5Dc	@sÕdZdkZdkZdddddddd	d
g	ZdaddZdd
dd
d„Zd„Zd„Z	d„Z
d„Zd„Zd„Z
d„Zd
fd„ƒYZd„ZedjoeƒndS(sHelper class to quickly write a loop over all standard input files.

Typical use is:

    import fileinput
    for line in fileinput.input():
        process(line)

This iterates over the lines of all files listed in sys.argv[1:],
defaulting to sys.stdin if the list is empty.  If a filename is '-' it
is also replaced by sys.stdin.  To specify an alternative list of
filenames, pass it as the argument to input().  A single file name is
also allowed.

Functions filename(), lineno() return the filename and cumulative line
number of the line that has just been read; filelineno() returns its
line number in the current file; isfirstline() returns true iff the
line just read is the first line of its file; isstdin() returns true
iff the line was read from sys.stdin.  Function nextfile() closes the
current file so that the next iteration will read the first line from
the next file (if any); lines not read from the file will not count
towards the cumulative line count; the filename is not changed until
after the first line of the next file has been read.  Function close()
closes the sequence.

Before any lines have been read, filename() returns None and both line
numbers are zero; nextfile() has no effect.  After all lines have been
read, filename() and the line number functions return the values
pertaining to the last line read; nextfile() has no effect.

All files are opened in text mode.  If an I/O error occurs during
opening or reading a file, the IOError exception is raised.

If sys.stdin is used more than once, the second and further use will
return no lines, except perhaps for interactive use, or if it has been
explicitly reset (e.g. using sys.stdin.seek(0)).

Empty files are opened and immediately closed; the only time their
presence in the list of filenames is noticeable at all is when the
last file opened is empty.

It is possible that the last line of a file doesn't end in a newline
character; otherwise lines are returned including the trailing
newline.

Class FileInput is the implementation; its methods filename(),
lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
correspond to the functions in the module.  In addition it has a
readline() method which returns the next input line, and a
__getitem__() method which implements the sequence behavior.  The
sequence must be accessed in strictly sequential order; sequence
access and readline() cannot be mixed.

Optional in-place filtering: if the keyword argument inplace=1 is
passed to input() or to the FileInput constructor, the file is moved
to a backup file and standard output is directed to the input file.
This makes it possible to write a filter that rewrites its input file
in place.  If the keyword argument backup=".<some extension>" is also
given, it specifies the extension for the backup file, and the backup
file remains around; by default, the extension is ".bak" and it is
deleted when the output file is closed.  In-place filtering is
disabled when standard input is read.  XXX The current implementation
does not work for MS-DOS 8+3 filesystems.

Performance: this module is unfortunately one of the slower ways of
processing large numbers of input lines.  Nevertheless, a significant
speed-up has been obtained by using readlines(bufsize) instead of
readline().  A new keyword argument, bufsize=N, is present on the
input() function and the FileInput() class to override the default
buffer size.

XXX Possible additions:

- optional getopt argument processing
- specify open mode ('r' or 'rb')
- fileno()
- isatty()
- read(), read(size), even readlines()

Ntinputtclosetnextfiletfilenametlinenot
filelinenotisfirstlinetisstdint	FileInputiiitcCs7totio
td‚nt||||ƒatS(s>input([files[, inplace[, backup]]])

    Create an instance of the FileInput class. The instance will be used
    as global state for the functions of this module, and is also returned
    to use during iteration. The parameters to this function will be passed
    along to the constructor of the FileInput class.
    sinput() already activeN(t_statet_filetRuntimeErrorRtfilestinplacetbackuptbufsize(R
RRR((t!/usr/lib64/python2.4/fileinput.pyR[s
cCs%t}da|o|iƒndS(sClose the sequence.N(R
tstatetNoneR(R((RRiscCstp
td‚ntiƒS(sì
    Close the current file so that the next iteration will read the first
    line from the next file (if any); lines not read from the file will
    not count towards the cumulative line count. The filename is not
    changed until after the first line of the next file has been read.
    Before the first line has been read, this function has no effect;
    it cannot be used to skip the first file. After the last line of the
    last file has been read, this function has no effect.
    sno active input()N(R
RR(((RRqs	
cCstp
td‚ntiƒS(sr
    Return the name of the file currently being read.
    Before the first line has been read, returns None.
    sno active input()N(R
RR(((RRs
cCstp
td‚ntiƒS(sâ
    Return the cumulative line number of the line that has just been read.
    Before the first line has been read, returns 0. After the last line
    of the last file has been read, returns the line number of that line.
    sno active input()N(R
RR(((RRˆs
cCstp
td‚ntiƒS(s×
    Return the line number in the current file. Before the first line
    has been read, returns 0. After the last line of the last file has
    been read, returns the line number of that line within the file.
    sno active input()N(R
RR(((RR’s
cCstp
td‚ntiƒS(se
    Returns true the line just read is the first line of its file,
    otherwise returns false.
    sno active input()N(R
RR(((RRœs
cCstp
td‚ntiƒS(s]
    Returns true if the last line was read from sys.stdin,
    otherwise returns false.
    sno active input()N(R
RR(((RR¥s
cBstZdZedddd„Zd„Zd„Zd„Zd„Zd„Z	d	„Z
d
„Zd„Zd„Z
d
„Zd„Zd„ZRS(sclass FileInput([files[, inplace[, backup]]])

    Class FileInput is the implementation of the module; its methods
    filename(), lineno(), fileline(), isfirstline(), isstdin(), nextfile()
    and close() correspond to the functions of the same name in the module.
    In addition it has a readline() method which returns the next
    input line, and a __getitem__() method which implements the
    sequence behavior. The sequence must be accessed in strictly
    sequential order; random access and readline() cannot be mixed.
    iR	cCsát|tƒo
|f}n<|djotid}n|p
d}n
t|ƒ}||_||_
||_|pt|_d|_d|_d|_d|_d|_d|_t|_d|_g|_d|_dS(Nit-i(R(t
isinstanceR
t
basestringRtsystargvttupletselft_filesRt_inplaceRt_backupRtDEFAULT_BUFSIZEt_bufsizet_savestdoutt_outputt	_filenamet_linenot_filelinenoRtFalset_isstdint_backupfilenamet_buffert	_bufindex(RR
RRR((Rt__init__ºs*


												cCs|iƒdS(N(RR(R((Rt__del__ÓscCs|iƒf|_dS(N(RRR(R((RRÖs
cCs|S(N(R(R((Rt__iter__ÚscCs|y|i|i}Wntj
on3X|id7_|id7_|id7_|S|iƒ}|p
t‚n|S(Ni(	RR(R)tlinet
IndexErrorR#R$treadlinet
StopIteration(RR-((RtnextÝs
cCsN||ijo
td‚ny|iƒSWntj
otd‚nXdS(Nsaccessing lines out of ordersend of input reached(tiRR#RR1R0R.(RR2((Rt__getitem__ìs
cCsí|i}d|_|o
|t_n|i}d|_|o|iƒn|i}d|_|o|i
o|iƒn|i}d|_|o6|i
o+yti|ƒWqÎtj
oqÎXnt|_
g|_d|_dS(Ni(RR t
savestdoutRtstdoutR!toutputRRtfileR&R'tbackupfilenameRtostunlinktOSErrorR%R(R)(RR4R7R8R6((RRôs,		
									cCs±y|i|i}Wntj
on3X|id7_|id7_|id7_|S|ip	|ipdSn|id|_	|id|_d|_d|_t|_d|_
|i	djo"d|_	ti|_t|_qn|io^|i	|iptid|_
yti|i
ƒWntij
onXti|i	|i
ƒt|i
dƒ|_yti|iiƒƒi}Wn(tj
ot|i	dƒ|_nXti|i	titi Bti!B|ƒ}ti#|dƒ|_y+t$td	ƒoti%|i	|ƒnWntj
onXti&|_'|it_&qnt|i	dƒ|_n|ii(|i)ƒ|_d|_|ip|i*ƒn|i+ƒS(
NiR	iRs<stdin>tbaktrtwtchmod(,RR(R)R-R.R#R$RRR"RR%R&R'RtstdintTrueRRR9textsepR:terrortrenametopentfstattfilenotst_modetpermR;R!tO_CREATtO_WRONLYtO_TRUNCtfdtfdopenthasattrR?R5R t	readlinesRRR/(RRIRMR-((RR/sd

					

!		
cCs|iS(N(RR"(R((RRHscCs|iS(N(RR#(R((RRKscCs|iS(N(RR$(R((RRNscCs
|idjS(Ni(RR$(R((RRQscCs|iS(N(RR&(R((RRTs(t__name__t
__module__t__doc__RR*R+RR,R1R3RR/RRRRR(((RR®s
							:				cCs+dk}d}d}|itiddƒ\}}xB|D]:\}}|djo
d}n|djo
|}q;q;Wxt	|d|d|ƒD]v}|dd	jo|d }n|dd
jo|d }ndtƒtƒt
ƒtƒodpd
|fGHq’Wdtƒtƒt
ƒfGHdS(Niisib:s-is-bRRiÿÿÿÿs
s
s%d: %s[%d]%s %st*R	s
%d: %s[%d](tgetoptRRRRtoptstargstotaRR-RRRR(RYRWRRXRUR-RRV((Rt_testWs$	


6t__main__(RSRR9t__all__RR
RRRRRRRRRRRZRQ(RRR\RZRRRRRRRRR9R((Rt?Ps !
					
	
				©	


Anon7 - 2021