Skip to content

Commit 480c2a9

Browse files
author
tim_one
committed
Whitespace normalization.
git-svn-id: http://svn.python.org/projects/python/trunk@18734 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 8a38b75 commit 480c2a9

14 files changed

+743
-743
lines changed

Lib/sched.py

+27-27
Original file line numberDiff line numberDiff line change
@@ -41,30 +41,30 @@ def __init__(self, timefunc, delayfunc):
4141
def enterabs(self, time, priority, action, argument):
4242
"""Enter a new event in the queue at an absolute time.
4343
44-
Returns an ID for the event which can be used to remove it,
45-
if necessary.
44+
Returns an ID for the event which can be used to remove it,
45+
if necessary.
4646
47-
"""
47+
"""
4848
event = time, priority, action, argument
4949
bisect.insort(self.queue, event)
5050
return event # The ID
5151

5252
def enter(self, delay, priority, action, argument):
5353
"""A variant that specifies the time as a relative time.
5454
55-
This is actually the more commonly used interface.
55+
This is actually the more commonly used interface.
5656
57-
"""
57+
"""
5858
time = self.timefunc() + delay
5959
return self.enterabs(time, priority, action, argument)
6060

6161
def cancel(self, event):
6262
"""Remove an event from the queue.
6363
64-
This must be presented the ID as returned by enter().
65-
If the event is not in the queue, this raises RuntimeError.
64+
This must be presented the ID as returned by enter().
65+
If the event is not in the queue, this raises RuntimeError.
6666
67-
"""
67+
"""
6868
self.queue.remove(event)
6969

7070
def empty(self):
@@ -73,25 +73,25 @@ def empty(self):
7373

7474
def run(self):
7575
"""Execute events until the queue is empty.
76-
77-
When there is a positive delay until the first event, the
78-
delay function is called and the event is left in the queue;
79-
otherwise, the event is removed from the queue and executed
80-
(its action function is called, passing it the argument). If
81-
the delay function returns prematurely, it is simply
82-
restarted.
83-
84-
It is legal for both the delay function and the action
85-
function to to modify the queue or to raise an exception;
86-
exceptions are not caught but the scheduler's state remains
87-
well-defined so run() may be called again.
88-
89-
A questionably hack is added to allow other threads to run:
90-
just after an event is executed, a delay of 0 is executed, to
91-
avoid monopolizing the CPU when other threads are also
92-
runnable.
93-
94-
"""
76+
77+
When there is a positive delay until the first event, the
78+
delay function is called and the event is left in the queue;
79+
otherwise, the event is removed from the queue and executed
80+
(its action function is called, passing it the argument). If
81+
the delay function returns prematurely, it is simply
82+
restarted.
83+
84+
It is legal for both the delay function and the action
85+
function to to modify the queue or to raise an exception;
86+
exceptions are not caught but the scheduler's state remains
87+
well-defined so run() may be called again.
88+
89+
A questionably hack is added to allow other threads to run:
90+
just after an event is executed, a delay of 0 is executed, to
91+
avoid monopolizing the CPU when other threads are also
92+
runnable.
93+
94+
"""
9595
q = self.queue
9696
while q:
9797
time, priority, action, argument = q[0]

Lib/sgmllib.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def goahead(self, end):
137137
k = self.parse_pi(i)
138138
if k < 0: break
139139
i = i+k
140-
continue
140+
continue
141141
match = special.match(rawdata, i)
142142
if match:
143143
if self.literal:
@@ -211,7 +211,7 @@ def parse_pi(self, i):
211211
__starttag_text = None
212212
def get_starttag_text(self):
213213
return self.__starttag_text
214-
214+
215215
# Internal -- handle starttag, return length or -1 if not terminated
216216
def parse_starttag(self, i):
217217
self.__starttag_text = None

Lib/shelve.py

+98-98
Original file line numberDiff line numberDiff line change
@@ -31,127 +31,127 @@
3131
# Try using cPickle and cStringIO if available.
3232

3333
try:
34-
from cPickle import Pickler, Unpickler
34+
from cPickle import Pickler, Unpickler
3535
except ImportError:
36-
from pickle import Pickler, Unpickler
36+
from pickle import Pickler, Unpickler
3737

3838
try:
39-
from cStringIO import StringIO
39+
from cStringIO import StringIO
4040
except ImportError:
41-
from StringIO import StringIO
41+
from StringIO import StringIO
4242

4343

4444
class Shelf:
45-
"""Base class for shelf implementations.
46-
47-
This is initialized with a dictionary-like object.
48-
See the module's __doc__ string for an overview of the interface.
49-
"""
50-
51-
def __init__(self, dict):
52-
self.dict = dict
53-
54-
def keys(self):
55-
return self.dict.keys()
56-
57-
def __len__(self):
58-
return len(self.dict)
59-
60-
def has_key(self, key):
61-
return self.dict.has_key(key)
62-
63-
def get(self, key, default=None):
64-
if self.dict.has_key(key):
65-
return self[key]
66-
return default
67-
68-
def __getitem__(self, key):
69-
f = StringIO(self.dict[key])
70-
return Unpickler(f).load()
71-
72-
def __setitem__(self, key, value):
73-
f = StringIO()
74-
p = Pickler(f)
75-
p.dump(value)
76-
self.dict[key] = f.getvalue()
77-
78-
def __delitem__(self, key):
79-
del self.dict[key]
80-
81-
def close(self):
82-
try:
83-
self.dict.close()
84-
except:
85-
pass
86-
self.dict = 0
87-
88-
def __del__(self):
89-
self.close()
90-
91-
def sync(self):
92-
if hasattr(self.dict, 'sync'):
93-
self.dict.sync()
94-
45+
"""Base class for shelf implementations.
46+
47+
This is initialized with a dictionary-like object.
48+
See the module's __doc__ string for an overview of the interface.
49+
"""
50+
51+
def __init__(self, dict):
52+
self.dict = dict
53+
54+
def keys(self):
55+
return self.dict.keys()
56+
57+
def __len__(self):
58+
return len(self.dict)
59+
60+
def has_key(self, key):
61+
return self.dict.has_key(key)
62+
63+
def get(self, key, default=None):
64+
if self.dict.has_key(key):
65+
return self[key]
66+
return default
67+
68+
def __getitem__(self, key):
69+
f = StringIO(self.dict[key])
70+
return Unpickler(f).load()
71+
72+
def __setitem__(self, key, value):
73+
f = StringIO()
74+
p = Pickler(f)
75+
p.dump(value)
76+
self.dict[key] = f.getvalue()
77+
78+
def __delitem__(self, key):
79+
del self.dict[key]
80+
81+
def close(self):
82+
try:
83+
self.dict.close()
84+
except:
85+
pass
86+
self.dict = 0
87+
88+
def __del__(self):
89+
self.close()
90+
91+
def sync(self):
92+
if hasattr(self.dict, 'sync'):
93+
self.dict.sync()
94+
9595

9696
class BsdDbShelf(Shelf):
97-
"""Shelf implementation using the "BSD" db interface.
97+
"""Shelf implementation using the "BSD" db interface.
9898
99-
This adds methods first(), next(), previous(), last() and
100-
set_location() that have no counterpart in [g]dbm databases.
99+
This adds methods first(), next(), previous(), last() and
100+
set_location() that have no counterpart in [g]dbm databases.
101101
102-
The actual database must be opened using one of the "bsddb"
103-
modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
104-
bsddb.rnopen) and passed to the constructor.
102+
The actual database must be opened using one of the "bsddb"
103+
modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
104+
bsddb.rnopen) and passed to the constructor.
105105
106-
See the module's __doc__ string for an overview of the interface.
107-
"""
106+
See the module's __doc__ string for an overview of the interface.
107+
"""
108108

109-
def __init__(self, dict):
110-
Shelf.__init__(self, dict)
109+
def __init__(self, dict):
110+
Shelf.__init__(self, dict)
111111

112-
def set_location(self, key):
113-
(key, value) = self.dict.set_location(key)
114-
f = StringIO(value)
115-
return (key, Unpickler(f).load())
112+
def set_location(self, key):
113+
(key, value) = self.dict.set_location(key)
114+
f = StringIO(value)
115+
return (key, Unpickler(f).load())
116116

117-
def next(self):
118-
(key, value) = self.dict.next()
119-
f = StringIO(value)
120-
return (key, Unpickler(f).load())
117+
def next(self):
118+
(key, value) = self.dict.next()
119+
f = StringIO(value)
120+
return (key, Unpickler(f).load())
121121

122-
def previous(self):
123-
(key, value) = self.dict.previous()
124-
f = StringIO(value)
125-
return (key, Unpickler(f).load())
122+
def previous(self):
123+
(key, value) = self.dict.previous()
124+
f = StringIO(value)
125+
return (key, Unpickler(f).load())
126126

127-
def first(self):
128-
(key, value) = self.dict.first()
129-
f = StringIO(value)
130-
return (key, Unpickler(f).load())
127+
def first(self):
128+
(key, value) = self.dict.first()
129+
f = StringIO(value)
130+
return (key, Unpickler(f).load())
131131

132-
def last(self):
133-
(key, value) = self.dict.last()
134-
f = StringIO(value)
135-
return (key, Unpickler(f).load())
132+
def last(self):
133+
(key, value) = self.dict.last()
134+
f = StringIO(value)
135+
return (key, Unpickler(f).load())
136136

137137

138138
class DbfilenameShelf(Shelf):
139-
"""Shelf implementation using the "anydbm" generic dbm interface.
139+
"""Shelf implementation using the "anydbm" generic dbm interface.
140+
141+
This is initialized with the filename for the dbm database.
142+
See the module's __doc__ string for an overview of the interface.
143+
"""
140144

141-
This is initialized with the filename for the dbm database.
142-
See the module's __doc__ string for an overview of the interface.
143-
"""
144-
145-
def __init__(self, filename, flag='c'):
146-
import anydbm
147-
Shelf.__init__(self, anydbm.open(filename, flag))
145+
def __init__(self, filename, flag='c'):
146+
import anydbm
147+
Shelf.__init__(self, anydbm.open(filename, flag))
148148

149149

150150
def open(filename, flag='c'):
151-
"""Open a persistent dictionary for reading and writing.
151+
"""Open a persistent dictionary for reading and writing.
152+
153+
Argument is the filename for the dbm database.
154+
See the module's __doc__ string for an overview of the interface.
155+
"""
152156

153-
Argument is the filename for the dbm database.
154-
See the module's __doc__ string for an overview of the interface.
155-
"""
156-
157-
return DbfilenameShelf(filename, flag)
157+
return DbfilenameShelf(filename, flag)

Lib/shlex.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
"""A lexical analyzer class for simple shell-like syntaxes."""
22

3-
# Module and documentation by Eric S. Raymond, 21 Dec 1998
3+
# Module and documentation by Eric S. Raymond, 21 Dec 1998
44
# Input stacking and error message cleanup added by ESR, March 2000
55

66
import os.path
77
import sys
88

99

1010
class shlex:
11-
"A lexical analyzer class for simple shell-like syntaxes."
11+
"A lexical analyzer class for simple shell-like syntaxes."
1212
def __init__(self, instream=None, infile=None):
1313
if instream:
1414
self.instream = instream
@@ -88,7 +88,7 @@ def read_token(self):
8888
self.lineno = self.lineno + 1
8989
if self.debug >= 3:
9090
print "shlex: in state", repr(self.state), \
91-
"I see character:", repr(nextchar)
91+
"I see character:", repr(nextchar)
9292
if self.state is None:
9393
self.token = '' # past end of file
9494
break
@@ -181,7 +181,7 @@ def error_leader(self, infile=None, lineno=None):
181181
return "\"%s\", line %d: " % (infile, lineno)
182182

183183

184-
if __name__ == '__main__':
184+
if __name__ == '__main__':
185185
if len(sys.argv) == 1:
186186
lexer = shlex()
187187
else:

Lib/shutil.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def copyfileobj(fsrc, fdst, length=16*1024):
1717
break
1818
fdst.write(buf)
1919

20-
20+
2121
def copyfile(src, dst):
2222
"""Copy data from src to dst"""
2323
fsrc = None
@@ -48,7 +48,7 @@ def copystat(src, dst):
4848

4949
def copy(src, dst):
5050
"""Copy data and mode bits ("cp src dst").
51-
51+
5252
The destination may be a directory.
5353
5454
"""

0 commit comments

Comments
 (0)