[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Accepted python2.7 2.7.3-16 (source all amd64)



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Fri, 08 Mar 2013 09:54:59 +0800
Source: python2.7
Binary: python2.7 libpython2.7-stdlib python2.7-minimal libpython2.7-minimal libpython2.7 python2.7-examples python2.7-dev libpython2.7-dev idle-python2.7 python2.7-doc python2.7-dbg libpython2.7-dbg
Architecture: source all amd64
Version: 2.7.3-16
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose <doko@debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 idle-python2.7 - IDE for Python (v2.7) using Tkinter
 libpython2.7 - Shared Python runtime library (version 2.7)
 libpython2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 libpython2.7-dev - Header files and a static library for Python (v2.7)
 libpython2.7-minimal - Minimal subset of the Python language (version 2.7)
 libpython2.7-stdlib - Interactive high-level object-oriented language (version 2.7)
 python2.7  - Interactive high-level object-oriented language (version 2.7)
 python2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 python2.7-dev - Header files and a static library for Python (v2.7)
 python2.7-doc - Documentation for the high-level object-oriented language Python
 python2.7-examples - Examples for the Python language (v2.7)
 python2.7-minimal - Minimal subset of the Python language (version 2.7)
Closes: 702005
Changes: 
 python2.7 (2.7.3-16) experimental; urgency=low
 .
   * Update to 20130308, taken from the 2.7 branch.
     - Issue #10156: In the interpreter's initialization phase, unicode globals
       are now initialized dynamically as needed.
     - Issue #16975: Fix error handling bug in the escape-decode decoder.
     - Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase
       interface and support all mandatory methods and properties.
     - Issue #13454: Fix a crash when deleting an iterator created by
       itertools.tee() if all other iterators were very advanced before.
     - Issue #3754: fix typo in pthread AC_CACHE_VAL.
     - Issue #17029: Let h2py search the multiarch system include directory.
     - Issue #16445: Fixed potential segmentation fault when deleting an
       exception message.
     - Issue #17275: Corrected class name in init error messages of the
       C version of BufferedWriter and BufferedRandom.
     - Issue #7963: Fixed misleading error message that issued when object is
       called without arguments.
     - Issue #5308: Raise ValueError when marshalling too large object (a
       sequence with size >= 2**31), instead of producing illegal marshal data.
     - Issue #17043: The unicode-internal decoder no longer read past the end of
       input buffer.
     - Issue #16979: Fix error handling bugs in the unicode-escape-decode
       decoder.
     - Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when
       the list is being resized concurrently.
     - Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
     - Issue #14720: sqlite3: Convert datetime microseconds correctly.
     - Issue #17225: JSON decoder now counts columns in the first line starting
       with 1, as in other lines.
     - Issue #7842: backported fix for py_compile.compile() syntax error
       handling.
     - Issue #13153: Tkinter functions now raise TclError instead of ValueError
       when a unicode argument contains non-BMP character.
     - Issue #9669: Protect re against infinite loops on zero-width matching in
       non-greedy repeat.
     - Issue #13169: The maximal repetition number in a regular expression
       has been increased from 65534 to 2147483647 (on 32-bit platform) or
       4294967294 (on 64-bit).
     - Issue #11311: StringIO.readline(0) now returns an empty string
       as all other file-like objects.
     - Issue #16800: tempfile.gettempdir() no longer left temporary files when
       the disk is full.  Original patch by Amir Szekely.
     - Issue #13555: cPickle now supports files larger than 2 GiB.
     - Issue #17052: unittest discovery should use self.testLoader.
     - Issue #4591: Uid and gid values larger than 2**31 are supported now.
     - Issue #17141: random.vonmisesvariate() no more hangs for large kappas.
     - Issue #17149: Fix random.vonmisesvariate to always return results in
       the range [0, 2*math.pi].
     - Issue #1470548: XMLGenerator now works with UTF-16 and UTF-32 encodings.
     - Issue #6975: os.path.realpath() now correctly resolves multiple nested
       symlinks on POSIX platforms.
     - Issue #17156: pygettext.py now correctly escapes non-ascii characters.
     - Issue #7358: cStringIO.StringIO now supports writing to and reading from
       a stream larger than 2 GiB on 64-bit systems.
     - IDLE was displaying spurious SystemExit tracebacks when running scripts
       that terminated by raising SystemExit (i.e. unittest and turtledemo).
     - Issue #10355: In SpooledTemporaryFile class mode and name properties and
       xreadlines method now work for unrolled files.  encoding and newlines
     - Issue #16686: Fixed a lot of bugs in audioop module.
     - Issue #17073: Fix some integer overflows in sqlite3 module.
     - Issue #6083: Fix multiple segmentation faults occured when
       PyArg_ParseTuple parses nested mutating sequence.
     - Issue #5289: Fix ctypes.util.find_library on Solaris.
     - Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an
       underlying stream or a decoder produces data of an unexpected type (i.e.
       when io.TextIOWrapper initialized with text stream or use bytes-to-bytes
       codec).
     - Issue #13994: Add compatibility alias in distutils.ccompiler for
       distutils.sysconfig.customize_compiler.
     - Issue #15633: httplib.HTTPResponse is now mark closed when the server
       sends less than the advertised Content-Length.
     - Issue #15881: Fixed atexit hook in multiprocessing.
     - Issue #14340: Upgrade the embedded expat library to version 2.1.0.
     - Issue #11159: SAX parser now supports unicode file names.
     - Issue #6972: The zipfile module no longer overwrites files outside of
       its destination path when extracting malicious zip files.
     - Issue #17049: Localized calendar methods now return unicode if a locale
       includes an encoding and the result string contains month or weekday (was
       regression from Python 2.6).
     - Issue #4844: ZipFile now raises BadZipfile when opens a ZIP file with an
       incomplete "End of Central Directory" record.
     - Issue #15505: `unittest.installHandler` no longer assumes SIGINT handler
       is set to a callable object.
     - Issue #17051: Fix a memory leak in os.path.isdir() on Windows.
     - Issue #12268: The io module file object write methods no longer abort
       early when a write system calls is interrupted (EINTR).
     - Issue #17249: convert a test in test_capi to use unittest and reap
       threads.
     - We now run both test_email.py and test_email_renamed.py when running the
       test_email regression test.  test_email_renamed contains some tests that
       test_email does not.
     - Issue #17041: Fix testing when Python is configured with the
       --without-doc-strings option.
     - Issue #5033: Fix building of the sqlite3 extension module when the
       SQLite library version has "beta" in it.
     - Issue #17228: Fix building without pymalloc.
     - Issue #17086: Backport the patches from the 3.3 branch to cross-build
       the package.
     - Issue #16406: combine the pages for uploading and registering to PyPI.
     - Issue #16403: Document how distutils uses the maintainer field in
       PKG-INFO.
     - Issue #16695: Document how glob handles filenames starting with a dot.
     - Issue #8890: Stop advertising an insecure practice by replacing uses
       of the /tmp directory with better alternatives in the documentation.
     - Issue #17203: add long option names to unittest discovery docs.
   * python2.7-dbg, libpython2.7-dbg: Drop dependency on python.
   * python2.7-dbg: Make gdb (not gdb-minimal) a recommendation.
   * python2.7: Replace python2.7-minimal (<< 2.7.3-7). Closes: #702005.
   * Build the _md5, _sha1, _sha256 and _sha512 extension modules.
   * Fix multiarch include for AArch64.
Checksums-Sha1: 
 1a7c118ab0b27f6fea0171fb8380a7568bdfa09d 2288 python2.7_2.7.3-16.dsc
 4ce2af7ab0f7632848650fc114e871f99d63c843 970704 python2.7_2.7.3-16.diff.gz
 fac29fc670b25c1ee4181d5af376d228ac6eb56b 718236 python2.7-examples_2.7.3-16_all.deb
 58f8246ce8b6c5a3bcca7d8f606b51237121b6fd 309188 idle-python2.7_2.7.3-16_all.deb
 0f6abf0f3b9c823133e3ccca722d936050744eb3 6305974 python2.7-doc_2.7.3-16_all.deb
 15f2311c0cc1ec8696c6dd83bf9deea36beed18f 331802 python2.7_2.7.3-16_amd64.deb
 6d917667a708a9c5cc49890d6d272d18448b8418 2433594 libpython2.7-stdlib_2.7.3-16_amd64.deb
 6552873ba3335bac19ee21de166280b637b18a15 1226274 python2.7-minimal_2.7.3-16_amd64.deb
 15bbabbc23e7ba55edb8a519b362a1799ff065cb 534702 libpython2.7-minimal_2.7.3-16_amd64.deb
 ae2f21569e454f730486cf82278879705553e1b6 1230474 libpython2.7_2.7.3-16_amd64.deb
 19a7fc331adf7224bef042c2ac4835350d8b57b2 276540 python2.7-dev_2.7.3-16_amd64.deb
 8be15d9f27de294abe1ae8a5b3b92760f4193650 23040288 libpython2.7-dev_2.7.3-16_amd64.deb
 116ccb9aae5355260d34f1ab52d5e9d57c3aede3 8799786 python2.7-dbg_2.7.3-16_amd64.deb
 10ffd8632e6d50f569a6a85292a1320f3cbeb727 6867786 libpython2.7-dbg_2.7.3-16_amd64.deb
Checksums-Sha256: 
 6fff1b7f06c9441290e175021df4427d49743befc5474c7076fbdb72c0bbae4e 2288 python2.7_2.7.3-16.dsc
 b7a1aa63547e184b7d4b64a4a28a3cf1de1265d790e1e4c9584d2ac029cb84ee 970704 python2.7_2.7.3-16.diff.gz
 83fe88c81a7812ec745a8464e7e1d7f027c63bc63c5154a0469217d15390be94 718236 python2.7-examples_2.7.3-16_all.deb
 855d1c166409791f7beeee7223b10b6fee6b64b4a512d7d257b78c1040661da9 309188 idle-python2.7_2.7.3-16_all.deb
 46c2702f86798dc0f05d51826149e4aee4633bf8fe78e5485a3b9fb0869f117b 6305974 python2.7-doc_2.7.3-16_all.deb
 2c3f9ebc0e1c5836f1835558914c85ab22eb0c307ba29b7803be07830df0ff04 331802 python2.7_2.7.3-16_amd64.deb
 8c031e9fb74bc60a766c5221a9cc2e951b97eac71ab979a4899a499b7e60a317 2433594 libpython2.7-stdlib_2.7.3-16_amd64.deb
 72b000fe6cef0127c8ad5e740985f26fdbe42af85c21b691b133e45b161367d3 1226274 python2.7-minimal_2.7.3-16_amd64.deb
 8fd9d8f82e1c0b65966a3c9427235c062e9c2b964c0fbaf24ea50718ca03aa39 534702 libpython2.7-minimal_2.7.3-16_amd64.deb
 91ffc6f7fbcd155fe021c2c89e4c2da6a62a5812e64f0635300555049b650249 1230474 libpython2.7_2.7.3-16_amd64.deb
 baef088f8b303b4bde747560e30180cb9f04be89e03bf07383f417a9046bd45c 276540 python2.7-dev_2.7.3-16_amd64.deb
 d04205a9df45927d9f073cfa88a5cea09a491203cb21dd681b4d8d788f587f49 23040288 libpython2.7-dev_2.7.3-16_amd64.deb
 70fc5196d3886c3d1c4cd80f1f4f143af896c80f4179edaccd4f35ed0b672c49 8799786 python2.7-dbg_2.7.3-16_amd64.deb
 e9a2a5d45e7f6a233e08982c024b5274bc2174d5419a08969d26fd000896e4d8 6867786 libpython2.7-dbg_2.7.3-16_amd64.deb
Files: 
 f963932afd8f6d1df07a58ae5e756d38 2288 python optional python2.7_2.7.3-16.dsc
 458081478ebf39ea50131084892d405a 970704 python optional python2.7_2.7.3-16.diff.gz
 abc723fce696a9c8cb6c4d14743c2e4a 718236 python optional python2.7-examples_2.7.3-16_all.deb
 30226d3b08fd5db1704ea2547b9c876a 309188 python optional idle-python2.7_2.7.3-16_all.deb
 3a4ae60e72c59d29cc48441de2391078 6305974 doc optional python2.7-doc_2.7.3-16_all.deb
 9ee913b5c13e89e9f8baf2db57672d1a 331802 python standard python2.7_2.7.3-16_amd64.deb
 5a8ecde9ccebe8d18ad23367d1e84e1c 2433594 python standard libpython2.7-stdlib_2.7.3-16_amd64.deb
 7b1e665f9306b30ff7d0df94ec9d0926 1226274 python standard python2.7-minimal_2.7.3-16_amd64.deb
 c4e6eae7c48dd03eff6d4152f17571a7 534702 python standard libpython2.7-minimal_2.7.3-16_amd64.deb
 3e9d2461a0fcd3ba1035037db8e4dbd1 1230474 libs standard libpython2.7_2.7.3-16_amd64.deb
 84de1e02615140d0f7ab25e5c5755b2c 276540 python optional python2.7-dev_2.7.3-16_amd64.deb
 861c077277cb109b107433b8a18fc002 23040288 libdevel optional libpython2.7-dev_2.7.3-16_amd64.deb
 ce273444418b89bbca8b1c9b5aeb0986 8799786 debug extra python2.7-dbg_2.7.3-16_amd64.deb
 655ab466b9e4c9a83c7d2083651d80b9 6867786 debug extra libpython2.7-dbg_2.7.3-16_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlE5gdUACgkQStlRaw+TLJwSIwCfdFxECaSQtkzQDdnDDB8myxI/
DnEAoJMb+w6fyXEb8JZzWW2peKF+kpxJ
=fRlp
-----END PGP SIGNATURE-----


Reply to: