.. |
bsddb
|
Remove the files/dirs after closing the DB so the tests work on Windows.
|
2008-03-05 05:10:48 +00:00 |
compiler
|
Issue 2117. Update compiler module to handle class decorators.
|
2008-02-25 18:06:00 +00:00 |
ctypes
|
Issue 1872: Changed the struct module typecode from 't' to '?', for
|
2008-03-05 15:34:29 +00:00 |
curses
|
Use file descriptor for real stdout
|
2008-02-25 16:29:58 +00:00 |
distutils
|
#1725737: ignore other VC directories other than CVS and SVN's too.
|
2008-03-06 06:47:18 +00:00 |
email
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
encodings
|
|
|
hotshot
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
idlelib
|
Give IDLE a release date
|
2008-03-01 03:00:52 +00:00 |
lib-tk
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
logging
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
msilib
|
|
|
plat-aix3
|
|
|
plat-aix4
|
|
|
plat-atheos
|
|
|
plat-beos5
|
|
|
plat-darwin
|
|
|
plat-freebsd4
|
|
|
plat-freebsd5
|
|
|
plat-freebsd6
|
|
|
plat-freebsd7
|
|
|
plat-freebsd8
|
|
|
plat-generic
|
|
|
plat-irix5
|
|
|
plat-irix6
|
|
|
plat-linux2
|
|
|
plat-mac
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
plat-netbsd1
|
|
|
plat-next3
|
|
|
plat-os2emx
|
|
|
plat-riscos
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
plat-sunos5
|
|
|
plat-unixware7
|
|
|
site-packages
|
|
|
sqlite3
|
Catch OSError when trying to remove a file in case removal fails. This
|
2008-03-05 05:20:44 +00:00 |
test
|
Issue 2246: itertools grouper object did not participate in GC (should be backported).
|
2008-03-06 22:51:36 +00:00 |
wsgiref
|
|
|
xml
|
|
|
__future__.py
|
|
|
__phello__.foo.py
|
|
|
_abcoll.py
|
Issue 2226: Callable checked for the wrong abstract method.
|
2008-03-03 22:19:58 +00:00 |
_LWPCookieJar.py
|
|
|
_MozillaCookieJar.py
|
|
|
_strptime.py
|
|
|
_threading_local.py
|
|
|
abc.py
|
Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,
|
2008-02-28 04:45:36 +00:00 |
aifc.py
|
|
|
anydbm.py
|
|
|
asynchat.py
|
|
|
asyncore.py
|
|
|
atexit.py
|
|
|
audiodev.py
|
|
|
base64.py
|
|
|
BaseHTTPServer.py
|
|
|
Bastion.py
|
|
|
bdb.py
|
|
|
binhex.py
|
|
|
bisect.py
|
|
|
calendar.py
|
|
|
cgi.py
|
|
|
CGIHTTPServer.py
|
|
|
cgitb.py
|
|
|
chunk.py
|
|
|
cmd.py
|
|
|
code.py
|
|
|
codecs.py
|
|
|
codeop.py
|
|
|
collections.py
|
|
|
colorsys.py
|
|
|
commands.py
|
|
|
compileall.py
|
fix typo
|
2008-03-04 21:14:04 +00:00 |
ConfigParser.py
|
|
|
contextlib.py
|
|
|
Cookie.py
|
|
|
cookielib.py
|
|
|
copy.py
|
|
|
copy_reg.py
|
|
|
cProfile.py
|
|
|
csv.py
|
|
|
dbhash.py
|
|
|
decimal.py
|
Fix docstring typo.
|
2008-02-29 03:29:17 +00:00 |
difflib.py
|
|
|
dircache.py
|
|
|
dis.py
|
|
|
doctest.py
|
|
|
DocXMLRPCServer.py
|
|
|
dumbdbm.py
|
|
|
dummy_thread.py
|
|
|
dummy_threading.py
|
|
|
filecmp.py
|
|
|
fileinput.py
|
|
|
fnmatch.py
|
|
|
formatter.py
|
|
|
fpformat.py
|
|
|
fractions.py
|
|
|
ftplib.py
|
|
|
functools.py
|
|
|
genericpath.py
|
|
|
getopt.py
|
|
|
getpass.py
|
|
|
gettext.py
|
|
|
glob.py
|
|
|
gzip.py
|
|
|
hashlib.py
|
|
|
heapq.py
|
|
|
hmac.py
|
|
|
htmlentitydefs.py
|
|
|
htmllib.py
|
|
|
HTMLParser.py
|
|
|
httplib.py
|
#1627: httplib now ignores negative Content-Length headers.
|
2008-02-24 00:14:24 +00:00 |
ihooks.py
|
|
|
imaplib.py
|
#1389051: IMAP module tries to read entire message in one chunk. Patch by Fredrik Lundh.
|
2008-02-23 19:02:33 +00:00 |
imghdr.py
|
|
|
imputil.py
|
|
|
inspect.py
|
Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too?
|
2008-03-03 18:28:04 +00:00 |
keyword.py
|
|
|
linecache.py
|
|
|
locale.py
|
|
|
macpath.py
|
|
|
macurl2path.py
|
|
|
mailbox.py
|
|
|
mailcap.py
|
|
|
markupbase.py
|
|
|
md5.py
|
|
|
mhlib.py
|
|
|
mimetools.py
|
|
|
mimetypes.py
|
|
|
MimeWriter.py
|
|
|
mimify.py
|
|
|
modulefinder.py
|
|
|
multifile.py
|
|
|
mutex.py
|
|
|
netrc.py
|
|
|
new.py
|
|
|
nntplib.py
|
|
|
ntpath.py
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
nturl2path.py
|
|
|
numbers.py
|
|
|
opcode.py
|
|
|
optparse.py
|
|
|
os.py
|
|
|
os2emxpath.py
|
|
|
pdb.doc
|
|
|
pdb.py
|
|
|
pickle.py
|
|
|
pickletools.py
|
|
|
pipes.py
|
|
|
pkgutil.py
|
|
|
platform.py
|
|
|
plistlib.py
|
|
|
popen2.py
|
Use os.closerange() in popen2.
|
2008-02-23 22:09:24 +00:00 |
poplib.py
|
|
|
posixfile.py
|
|
|
posixpath.py
|
|
|
pprint.py
|
|
|
profile.py
|
|
|
pstats.py
|
|
|
pty.py
|
|
|
py_compile.py
|
#2225: return nonzero status code from py_compile if not all files could be compiled.
|
2008-03-06 07:41:16 +00:00 |
pyclbr.py
|
|
|
pydoc.py
|
|
|
Queue.py
|
|
|
quopri.py
|
|
|
random.py
|
|
|
re.py
|
|
|
repr.py
|
|
|
rexec.py
|
|
|
rfc822.py
|
|
|
rlcompleter.py
|
#2220: handle matching failure more gracefully.
|
2008-03-06 07:43:02 +00:00 |
robotparser.py
|
|
|
runpy.py
|
|
|
sched.py
|
|
|
sets.py
|
|
|
sgmllib.py
|
|
|
sha.py
|
|
|
shelve.py
|
Revert part of r60927 which made invalid assumptions about the API offered by db modules.
|
2008-02-25 23:17:41 +00:00 |
shlex.py
|
|
|
shutil.py
|
|
|
SimpleHTTPServer.py
|
#2169: make generated HTML more valid
|
2008-02-28 14:03:03 +00:00 |
SimpleXMLRPCServer.py
|
|
|
site.py
|
|
|
smtpd.py
|
|
|
smtplib.py
|
|
|
sndhdr.py
|
|
|
socket.py
|
#1389051, #1092502: fix excessively large allocations when using read() on a socket
|
2008-02-23 19:28:58 +00:00 |
SocketServer.py
|
Prevent SocketServer.ForkingMixIn from waiting on child processes that it
|
2008-02-28 18:03:15 +00:00 |
sre.py
|
|
|
sre_compile.py
|
|
|
sre_constants.py
|
|
|
sre_parse.py
|
|
|
ssl.py
|
Patch #2167 from calvin: Remove unused imports
|
2008-02-23 17:40:11 +00:00 |
stat.py
|
|
|
statvfs.py
|
|
|
string.py
|
|
|
StringIO.py
|
|
|
stringold.py
|
|
|
stringprep.py
|
|
|
struct.py
|
|
|
subprocess.py
|
|
|
sunau.py
|
|
|
sunaudio.py
|
|
|
symbol.py
|
|
|
symtable.py
|
|
|
tabnanny.py
|
|
|
tarfile.py
|
|
|
telnetlib.py
|
|
|
tempfile.py
|
|
|
textwrap.py
|
|
|
this.py
|
|
|
threading.py
|
Thread.start() used sleep(0.000001) to make sure it didn't return before the
|
2008-02-28 06:09:19 +00:00 |
timeit.py
|
|
|
toaiff.py
|
|
|
token.py
|
Issue 2117. Update compiler module to handle class decorators.
|
2008-02-25 18:06:00 +00:00 |
tokenize.py
|
|
|
trace.py
|
Add a timing flag to Trace so you can see where slowness occurs
|
2008-02-26 08:21:28 +00:00 |
traceback.py
|
|
|
tty.py
|
|
|
types.py
|
|
|
unittest.py
|
|
|
urllib.py
|
|
|
urllib2.py
|
|
|
urlparse.py
|
|
|
user.py
|
|
|
UserDict.py
|
|
|
UserList.py
|
|
|
UserString.py
|
|
|
uu.py
|
|
|
uuid.py
|
|
|
warnings.py
|
|
|
wave.py
|
|
|
weakref.py
|
|
|
webbrowser.py
|
|
|
whichdb.py
|
|
|
wsgiref.egg-info
|
|
|
xdrlib.py
|
|
|
xmllib.py
|
|
|
xmlrpclib.py
|
|
|
zipfile.py
|
|
|