~voronov84/ubuntu/raring/python2.7/fix-for-1166644

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-11-28 13:49:46 UTC
  • Revision ID: package-import@ubuntu.com-20121128134946-g4qpyz5x0961ff6f
Tags: 2.7.3-5ubuntu5
* Update to 20121128, taken from the 2.7 branch.
  - Issue #9011: Fix hacky AST code that modified the CST when compiling
    a negated numeric literal.
  - Issue #16306: Fix multiple error messages when unknown command line
    parameters where passed to the interpreter.
  - Issue #15379: Fix passing of non-BMP characters as integers for the
    charmap decoder (already working as unicode strings).
  - Issue #16453: Fix equality testing of dead weakref objects.
  - Issue #9535: Fix pending signals that have been received but not yet
    handled by Python to not persist after os.fork() in the child process.
  - Issue #15001: fix segfault on "del sys.modules['__main__']".
  - Issue #5057: the peepholer no longer optimizes subscription on unicode
    literals (e.g. u'foo'[0]) in order to produce compatible pyc files
    between narrow and wide builds.
  - Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5)
    now raises an error.
  - Issue #14700: Fix buggy overflow checks for large width and precision
    in string formatting operations.
  - Issue #16345: Fix an infinite loop when ``fromkeys`` on a dict subclass
    received a nonempty dict from the constructor.
  - Issue #6074: Ensure cached bytecode files can always be updated by the
    user that created them, even when the source file is read-only.
  - Issue #14783: Improve int() and long() docstrings and switch docstrings
    for unicode(), slice(), range(), and xrange() to use multi-line
    signatures.
  - Issue #16030: Fix overflow bug in computing the `repr` of an xrange
    object with large start, step or length.
  - Issue #16029: Fix overflow bug occurring when pickling xranges with large
    start, step or length.
  - Issue #16037: Limit httplib's _read_status() function to work around
    broken HTTP servers and reduce memory usage (backport of a 3.2 fix).
  - Issue #13992: The trashcan mechanism is now thread-safe.  This eliminates
    sporadic crashes in multi-thread programs when several long deallocator
    chains ran concurrently and involved subclasses of built-in container
    types.
  - Issue #15801: Make sure mappings passed to '%' formatting are actually
    subscriptable.
  - Issue #15604: Update uses of PyObject_IsTrue() to check for and handle
    errors correctly.
  - Issue #15897: zipimport.c doesn't check return value of fseek().
  - Issue #16369: Global PyTypeObjects not initialized with PyType_Ready(...).
  - Issue #15033: Fix the exit status bug when modules invoked using
    -m switch, return the proper failure return value (1).
  - Issue #1160: Fix compiling large regular expressions on UCS2 builds.
  - Issue #14313: zipfile now raises NotImplementedError when the compression
    type is unknown.
  - Issue #16408: Fix file descriptors not being closed in error conditions
    in the zipfile module.
  - Issue #16327: The subprocess module no longer leaks file descriptors
    used for stdin/stdout/stderr pipes to the child when fork() fails.
  - Issue #14396: Handle the odd rare case of waitpid returning 0 when not
    expected in subprocess.Popen.wait().
  - Issue #16411: Fix a bug where zlib.decompressobj().flush() might try
    to access previously-freed memory.
  - Issue #16350: zlib.decompressobj().decompress() now accumulates data from
    successive calls after EOF in unused_data, instead of only saving the
    argument to the last call. decompressobj().flush() now correctly sets
    unused_data and unconsumed_tail. A bug in the handling of MemoryError
    when setting the unconsumed_tail attribute has also been fixed.
  - Issue #12759: sre_parse now raises a proper error when the name
    of the group is missing.
  - Issue #16152: fix tokenize to ignore whitespace at the end of the code
    when no newline is found.
  - Issue #1207589: Add Cut/Copy/Paste items to IDLE right click
    Context Menu.
  - Issue #16230: Fix a crash in select.select() when one the lists changes
    size while iterated on.
  - Issue #16228: Fix a crash in the json module where a list changes size
    while it is being encoded.
  - Issue #14897: Enhance error messages of struct.pack and struct.pack_into.
  - Issue #12890: cgitb no longer prints spurious <p> tags in text
    mode when the logdir option is specified.
  - Issue #14398: Fix size truncation and overflow bugs in the bz2 module.
  - Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
  - Issue #16220: wsgiref now always calls close() on an iterable response.
  - Issue #16461: Wave library should be able to deal with 4GB wav files,
    and sample rate of 44100 Hz.
  - Issue #16176: Properly identify Windows 8 via platform.platform().
  - Issue #15756: subprocess.poll() now properly handles errno.ECHILD to
    return a returncode of 0 when the child has already exited or cannot
    be waited on.
  - Issue #12376: Pass on parameters in TextTestResult.__init__ super call.
  - Issue #15222: Insert blank line after each message in mbox mailboxes.
  - Issue #16013: Fix CSV Reader parsing issue with ending quote characters.
  - Issue #15421: fix an OverflowError in Calendar.itermonthdates() after
    datetime.MAXYEAR.
  - Issue #15970: xml.etree.ElementTree now serializes correctly the
    empty HTML elements 'meta' and 'param'.
  - Issue #15676: Now "mmap" check for empty files before doing the
    offset check.
  - Issue #15340: Fix importing the random module when /dev/urandom cannot
    be opened.  This was a regression caused by the hash randomization patch.
  - Issue #15841: The readable(), writable() and seekable() methods of
    io.BytesIO and io.StringIO objects now raise ValueError when the object
    has been closed.
  - Issue #16112: platform.architecture does not correctly escape argument to
    /usr/bin/file.
  - Issue #12776,#11839: call argparse type function (specified by
    add_argument) only once. Before, the type function was called twice in
    the case where the default was specified and the argument was given as
    well.  This was especially problematic for the FileType type, as a
    default file would always be opened, even if a file argument was
    specified on the command line.
  - Issue #15906: Fix a regression in argparse caused by the preceding change,
    when action='append', type='str' and default=[].
  - Issue #13370: Ensure that ctypes works on Mac OS X when Python is
    compiled using the clang compiler
  - Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
  - Issue #15199: Fix JavaScript's default MIME type to
    application/javascript.
  - Issue #15477: In cmath and math modules, add workaround for platforms
    whose system-supplied log1p function doesn't respect signs of zeros.
  - Issue #15908: Fix misbehaviour of the sha1 module when called on data
    larger than 2**32 bytes.
  - Issue #15910: Fix misbehaviour of _md5 and sha1 modules when "updating"
    on data larger than 2**32 bytes.
  - Fix the leak of a dict in the time module when used in an embedded
    interpreter that is repeatedly initialized and shutdown and reinitialized.
  - Issue #12268: File readline, readlines and read or readall methods
    no longer lose data when an underlying read system call is interrupted
    within an io module object.  IOError is no longer raised due to a read
    system call returning EINTR from within these methods.
  - Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()
    method doesn't require an argument again.
  - Issue #16559: Add more tests for the json module, including some from the
    official test suite at json.org.
  - Issue #16274: Fix test_asyncore on Solaris.
  - Issue #15040: Close files in mailbox tests for PyPy compatibility.
  - Issue #15802: Fix test logic in TestMaildir.test_create_tmp.
  - Issue #15765: Extend a previous fix to Solaris and OpenBSD for quirky
    getcwd() behaviour (issue #9185) to NetBSD as well.
  - Issue #15615: Add some tests for the json module's handling of invalid
    input data.
  - Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError
    after 2801bf875a24 (see #15801).
  - Issue #11715: Fix multiarch detection without having Debian development
    tools (dpkg-dev) installed.
  - Issue #15819: Make sure we can build Python out-of-tree from a readonly
    source directory.  (Somewhat related to Issue #9860.)
  - Issue #15822: Ensure 2to3 grammar pickles are properly installed.
  - Issue #13301: use ast.literal_eval() instead of eval()
    in Tools/i18n/msgfmt.py.
  - Issue #16400: Update the description of which versions of a given package
    PyPI displays.
  - Issue #15677: Document that zlib and gzip accept a compression level
    of 0 to mean 'no compression'.
  - Issue #8040: added a version switcher to the documentation.
  - Issue #16115: Improve subprocess.Popen() documentation around args,
    shell, and executable arguments.
  - Issue #15979: Improve timeit documentation.
  - Issue #16036: Improve documentation of built-in int()'s signature and
    arguments.
  - Issue #15935: Clarification of argparse docs, re: add_argument() type and
    default arguments.
  - Issue #13769: Document the effect of ensure_ascii to the return type
    of JSON decoding functions.
  - Issue #14880: Fix kwargs notation in csv.reader,
    .writer & .register_dialect.
  - Issue #14674: Add a discussion of the json module's standard compliance.
* Clarify location of the gdbinit file. LP: #975676.
* Fix traceback for missing distutils wininst .exe files. LP: #1081155.
Filename Latest Rev Last Changed Committer Comment Size
..
bsddb 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
compiler 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
ctypes 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
curses 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
distutils 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
email 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
encodings 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
hotshot 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
idlelib 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
importlib 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
json 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
lib-tk 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
lib2to3 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
logging 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
msilib 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
multiprocessing 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-aix3 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-aix4 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-atheos 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-beos5 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-darwin 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-freebsd4 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-freebsd5 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-freebsd6 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-freebsd7 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-freebsd8 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-generic 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-irix5 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-irix6 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-linux2 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-mac 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-netbsd1 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-next3 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-os2emx 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-riscos 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-sunos5 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
plat-unixware7 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
pydoc_data 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
site-packages 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
sqlite3 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
test 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
unittest 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
wsgiref 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
xml 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 Diff
__future__.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.2 KB Diff Download File
__phello__.foo.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 64 bytes Diff Download File
_abcoll.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 14.3 KB Diff Download File
_LWPCookieJar.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 6.3 KB Diff Download File
_MozillaCookieJar.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 5.6 KB Diff Download File
_pyio.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 66.8 KB Diff Download File
_strptime.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 19.2 KB Diff Download File
_threading_local.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 7.2 KB Diff Download File
_weakrefset.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 6.2 KB Diff Download File
abc.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 6.9 KB Diff Download File
aifc.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 32.7 KB Diff Download File
antigravity.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 60 bytes Diff Download File
anydbm.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 2.6 KB Diff Download File
argparse.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 85.7 KB Diff Download File
ast.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 11.5 KB Diff Download File
asynchat.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 11.1 KB Diff Download File
asyncore.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 20.3 KB Diff Download File
atexit.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.6 KB Diff Download File
audiodev.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 7.4 KB Diff Download File
File base64.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 11 KB Diff Download File
BaseHTTPServer.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 21.9 KB Diff Download File
Bastion.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 5.6 KB Diff Download File
bdb.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 20.5 KB Diff Download File
binhex.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 14.1 KB Diff Download File
bisect.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 2.5 KB Diff Download File
calendar.py 1.1.7 13 years ago Bazaar Package Importer Import upstream version 2.7.1 22.5 KB Diff Download File
File cgi.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 33.6 KB Diff Download File
CGIHTTPServer.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 12.6 KB Diff Download File
cgitb.py 1.1.3 14 years ago Bazaar Package Importer Import upstream version 2.7~b1 11.7 KB Diff Download File
chunk.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 5.2 KB Diff Download File
cmd.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 14.5 KB Diff Download File
code.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 9.9 KB Diff Download File
codecs.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 34.4 KB Diff Download File
codeop.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 5.8 KB Diff Download File
collections.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 24.8 KB Diff Download File
colorsys.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3.6 KB Diff Download File
commands.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 2.4 KB Diff Download File
compileall.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 7.5 KB Diff Download File
ConfigParser.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 27 KB Diff Download File
contextlib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.3 KB Diff Download File
Cookie.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 25.2 KB Diff Download File
cookielib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 62.9 KB Diff Download File
copy.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 11.2 KB Diff Download File
copy_reg.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 6.6 KB Diff Download File
File cProfile.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 6.3 KB Diff Download File
csv.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 15.9 KB Diff Download File
dbhash.py 1.1.3 14 years ago Bazaar Package Importer Import upstream version 2.7~b1 498 bytes Diff Download File
decimal.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 215 KB Diff Download File
difflib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 80.4 KB Diff Download File
dircache.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1 KB Diff Download File
dis.py 1.1.3 14 years ago Bazaar Package Importer Import upstream version 2.7~b1 6.3 KB Diff Download File
doctest.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 101 KB Diff Download File
DocXMLRPCServer.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 10.2 KB Diff Download File
dumbdbm.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 8.6 KB Diff Download File
dummy_thread.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.3 KB Diff Download File
dummy_threading.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 2.7 KB Diff Download File
filecmp.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 9.3 KB Diff Download File
fileinput.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 13.8 KB Diff Download File
fnmatch.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 3.1 KB Diff Download File
formatter.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 14.5 KB Diff Download File
fpformat.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.5 KB Diff Download File
fractions.py 1.1.3 14 years ago Bazaar Package Importer Import upstream version 2.7~b1 21.8 KB Diff Download File
ftplib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 35.1 KB Diff Download File
functools.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 4.3 KB Diff Download File
genericpath.py 1.1.2 14 years ago Bazaar Package Importer Import upstream version 2.7~a4 2.9 KB Diff Download File
getopt.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 7.1 KB Diff Download File
getpass.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 5.4 KB Diff Download File
gettext.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 19.3 KB Diff Download File
glob.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 2.1 KB Diff Download File
gzip.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 18 KB Diff Download File
hashlib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 4.8 KB Diff Download File
heapq.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 16.9 KB Diff Download File
hmac.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.4 KB Diff Download File
htmlentitydefs.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 17.6 KB Diff Download File
htmllib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 12.5 KB Diff Download File
HTMLParser.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 16.5 KB Diff Download File
httplib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 45.3 KB Diff Download File
ihooks.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 18.5 KB Diff Download File
imaplib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 46.5 KB Diff Download File
imghdr.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3.4 KB Diff Download File
imputil.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 25.1 KB Diff Download File
inspect.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 41.4 KB Diff Download File
io.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3.5 KB Diff Download File
File keyword.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.9 KB Diff Download File
linecache.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 3.8 KB Diff Download File
locale.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 87.1 KB Diff Download File
macpath.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 6.1 KB Diff Download File
macurl2path.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3.1 KB Diff Download File
mailbox.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 76.4 KB Diff Download File
mailcap.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 7.2 KB Diff Download File
markupbase.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 14.2 KB Diff Download File
md5.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 358 bytes Diff Download File
mhlib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 32.6 KB Diff Download File
mimetools.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 7 KB Diff Download File
mimetypes.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 20.1 KB Diff Download File
MimeWriter.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 6.3 KB Diff Download File
File mimify.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 14.6 KB Diff Download File
modulefinder.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 23.7 KB Diff Download File
multifile.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.7 KB Diff Download File
mutex.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.8 KB Diff Download File
netrc.py 1.1.9 13 years ago Bazaar Package Importer Import upstream version 2.7.2 4.4 KB Diff Download File
new.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 610 bytes Diff Download File
nntplib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 20.6 KB Diff Download File
ntpath.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 18 KB Diff Download File
nturl2path.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 2.3 KB Diff Download File
numbers.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 10 KB Diff Download File
opcode.py 1.1.1 14 years ago Bazaar Package Importer Import upstream version 2.7~a3 5.3 KB Diff Download File
optparse.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 59.6 KB Diff Download File
os.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 25.1 KB Diff Download File
os2emxpath.py 1.1.2 14 years ago Bazaar Package Importer Import upstream version 2.7~a4 4.4 KB Diff Download File
pdb.doc 1.1.5 13 years ago Bazaar Package Importer Import upstream version 2.7 7.7 KB Diff Download File
File pdb.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 44.9 KB Diff Download File
pickle.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 44 KB Diff Download File
pickletools.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 72.7 KB Diff Download File
pipes.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 9.3 KB Diff Download File
pkgutil.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 19.8 KB Diff Download File
File platform.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 51.1 KB Diff Download File
plistlib.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 14.8 KB Diff Download File
popen2.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 8.2 KB Diff Download File
poplib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 12 KB Diff Download File
posixfile.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 7.8 KB Diff Download File
posixpath.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 12.8 KB Diff Download File
pprint.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 11.6 KB Diff Download File
File profile.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 22.2 KB Diff Download File
pstats.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 25.8 KB Diff Download File
pty.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 4.9 KB Diff Download File
py_compile.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 5.7 KB Diff Download File
pyclbr.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 12.9 KB Diff Download File
File pydoc.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 91.3 KB Diff Download File
Queue.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 8.3 KB Diff Download File
File quopri.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 6.8 KB Diff Download File
random.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 31.5 KB Diff Download File
re.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 12.6 KB Diff Download File
repr.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 4.1 KB Diff Download File
rexec.py 1.1.2 14 years ago Bazaar Package Importer Import upstream version 2.7~a4 19.6 KB Diff Download File
rfc822.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 32.5 KB Diff Download File
rlcompleter.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 5.7 KB Diff Download File
robotparser.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 7 KB Diff Download File
runpy.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 10.4 KB Diff Download File
sched.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 4.9 KB Diff Download File
sets.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 18.6 KB Diff Download File
sgmllib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 17.4 KB Diff Download File
sha.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 393 bytes Diff Download File
shelve.py 1.1.2 14 years ago Bazaar Package Importer Import upstream version 2.7~a4 7.8 KB Diff Download File
shlex.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 10.8 KB Diff Download File
shutil.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 17.9 KB Diff Download File
SimpleHTTPServer.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 7.2 KB Diff Download File
SimpleXMLRPCServer.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 25.1 KB Diff Download File
site.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 19.7 KB Diff Download File
File smtpd.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 18.1 KB Diff Download File
File smtplib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 30.3 KB Diff Download File
sndhdr.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 5.8 KB Diff Download File
socket.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 20 KB Diff Download File
SocketServer.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 22.7 KB Diff Download File
sre.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 384 bytes Diff Download File
sre_compile.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 16 KB Diff Download File
sre_constants.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 6.9 KB Diff Download File
sre_parse.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 26.1 KB Diff Download File
ssl.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 15.5 KB Diff Download File
stat.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 1.7 KB Diff Download File
statvfs.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 898 bytes Diff Download File
string.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 20.2 KB Diff Download File
StringIO.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 10.4 KB Diff Download File
stringold.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 12.1 KB Diff Download File
stringprep.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 13.2 KB Diff Download File
struct.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 82 bytes Diff Download File
subprocess.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 54.3 KB Diff Download File
sunau.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 16.1 KB Diff Download File
sunaudio.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.3 KB Diff Download File
File symbol.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 2 KB Diff Download File
symtable.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 7.3 KB Diff Download File
sysconfig.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 24.9 KB Diff Download File
File tabnanny.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 11 KB Diff Download File
tarfile.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 86.9 KB Diff Download File
telnetlib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 21.2 KB Diff Download File
tempfile.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 17.6 KB Diff Download File
textwrap.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 16.4 KB Diff Download File
this.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1002 bytes Diff Download File
threading.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 31.7 KB Diff Download File
timeit.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 11.8 KB Diff Download File
toaiff.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3 KB Diff Download File
File token.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 2.8 KB Diff Download File
tokenize.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 16 KB Diff Download File
trace.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 29.1 KB Diff Download File
traceback.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 10.9 KB Diff Download File
tty.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 879 bytes Diff Download File
types.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.9 KB Diff Download File
urllib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 56.3 KB Diff Download File
urllib2.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 50.3 KB Diff Download File
urlparse.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 14 KB Diff Download File
user.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 1.5 KB Diff Download File
UserDict.py 1.1.5 13 years ago Bazaar Package Importer Import upstream version 2.7 5.6 KB Diff Download File
UserList.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 3.5 KB Diff Download File
File UserString.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 9.4 KB Diff Download File
File uu.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 6.4 KB Diff Download File
uuid.py 1.1.6 13 years ago Bazaar Package Importer Import upstream version 2.7.1~rc1 20.6 KB Diff Download File
warnings.py 1.1.4 13 years ago Bazaar Package Importer Import upstream version 2.7~rc2 13.7 KB Diff Download File
wave.py 1.1.7 13 years ago Bazaar Package Importer Import upstream version 2.7.1 17.6 KB Diff Download File
weakref.py 1.1.3 14 years ago Bazaar Package Importer Import upstream version 2.7~b1 10.4 KB Diff Download File
webbrowser.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 21.1 KB Diff Download File
whichdb.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 3.2 KB Diff Download File
wsgiref.egg-info 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 187 bytes Diff Download File
xdrlib.py 1.1.8 13 years ago Bazaar Package Importer Import upstream version 2.7.2~rc1 5.4 KB Diff Download File
xmllib.py 1 14 years ago Bazaar Package Importer Import upstream version 2.7~a2 34 KB Diff Download File
xmlrpclib.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 50.1 KB Diff Download File
zipfile.py 1.1.10 12 years ago Package Import Robot Import upstream version 2.7.3~rc1 52.7 KB Diff Download File