-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 29 Apr 2015 03:03:55 +0200
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 
libpython2.7-testsuite idle-python2.7 python2.7-doc python2.7-dbg 
libpython2.7-dbg
Architecture: source all i386
Version: 2.7.9-3
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose <d...@debian.org>
Changed-By: Matthias Klose <d...@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 
(standard library
 libpython2.7-testsuite - Testsuite for the Python standard library (v2.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)
Changes:
 python2.7 (2.7.9-3) unstable; urgency=medium
 .
   * Update to 20150429, taken from the 2.7 release branch.
     - Issue #23629: Fix the default __sizeof__ implementation for
       variable-sized objects.
     - Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.
     - Issue #23838: linecache now clears the cache and returns an empty
       result on MemoryError.
     - Issue #23742: ntpath.expandvars() no longer loses unbalanced single
       quotes.
     - Issue #21802: The reader in BufferedRWPair now is closed even when
       closing writer failed in BufferedRWPair.close().
     - Issue #23671: string.Template now allows to specify the "self" parameter
       as keyword argument.  string.Formatter now allows to specify the "self"
       and the "format_string" parameters as keyword arguments.
     - Issue #21560: An attempt to write a data of wrong type no longer cause
       GzipFile corruption.
     - Issue #23647: Increase imaplib's MAXLINE to accommodate modern mailbox
       sizes.
     - Issue #23539: If body is None, http.client.HTTPConnection.request now
       sets Content-Length to 0 for PUT, POST, and PATCH headers to avoid
       411 errors from some web servers.
     - Issue #23136: _strptime now uniformly handles all days in week 0,
       including Dec 30 of previous year.
     - Issue #23138: Fixed parsing cookies with absent keys or values in
       cookiejar.
     - Issue #23051: multiprocessing.Pool methods imap() and imap_unordered()
       now handle exceptions raised by an iterator.
     - Issue #22928: Disabled HTTP header injections in httplib.
     - Issue #23615: Module tarfile now can be reloaded with imp.reload().
     - Issue #23799: Added test.test_support.start_threads() for running and
       cleaning up multiple threads.
     - Issue #22390: test.regrtest now emits a warning if temporary files or
       directories are left after running a test.
     - Issue #23583: Added tests for standard IO streams in IDLE.
     - Issue #23583: Fixed writing unicode to standard output stream in IDLE.
     - Issue #22853: Fixed a deadlock when use multiprocessing.Queue at import
       time.
     - Issue #23476: In the ssl module, enable OpenSSL's
       X509_V_FLAG_TRUSTED_FIRST flag on certificate stores when it is 
available.
     - Issue #23576: Avoid stalling in SSL reads when EOF has been reached
       in the SSL layer but the underlying connection hasn't been closed.
     - Issue #23504: Added an __all__ to the types module.
     - Issue #23367: Fix possible overflows in the unicodedata module.
     - Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV.
     - Issue #23048: Fix jumping out of an infinite while loop in the pdb.
     - Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is
       now set to non inheritable.
     - Issue #22113: struct.pack_into() now supports new buffer protocol (in
       particular accepts writable memoryview).
     - Issues #814253, #9179: Warnings now are raised when group references and
       conditional group references are used in lookbehind assertions in regular
       expressions.
     - Issue #23215: Multibyte codecs with custom error handlers that ignores
       errors consumed too much memory and raised SystemError or MemoryError.
     - Issue #5700: io.FileIO() called flush() after closing the file.
       flush() was not called in close() if closefd=False.
     - Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with
       empty docstrings.
     - Issue #22885: Fixed arbitrary code execution vulnerability in the dumbdbm
       module.
     - Issue #23481: Remove RC4 from the SSL module's default cipher list.
     - Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings
       in the multiprocessing module.
     - Issue #21840: Fixed expanding unicode variables of form $var in
       posixpath.expandvars().  Fixed all os.path implementations on
       unicode-disabled builds.
     - Issue #23363: Fix possible overflow in itertools.permutations.
     - Issue #23364: Fix possible overflow in itertools.product.
     - Issue #23365: Fixed possible integer overflow in
       itertools.combinations_with_replacement.
     - Issue #23366: Fixed possible integer overflow in itertools.combinations.
     - Issue #23191: fnmatch functions that use caching are now threadsafe.
     - Issue #18518: timeit now rejects statements which can't be compiled
       outside a function or a loop (e.g. "return" or "break").
     - Issue #19996: Make :mod:`httplib` ignore headers with no name rather than
       assuming the body has started.
     - Issue #20188: Support Application-Layer Protocol Negotiation (ALPN) in 
the
       ssl module.
     - Issue #23248: Update ssl error codes from latest OpenSSL git master.
     - Issue #23098: 64-bit dev_t is now supported in the os module.
     - Issue #23063: In the disutils' check command, fix parsing of reST with
       code or code-block directives.
     - Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
       availability of the function is checked during the compilation.
     - Backport the context argument to ftplib.FTP_TLS.
     - Issue #23111: Maximize compatibility in protocol versions of
       ftplib.FTP_TLS.
     - Issue #23112: Fix SimpleHTTPServer to correctly carry the query string
       and fragment when it redirects to add a trailing slash.
     - Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls
       getentropy(), instead of reading /dev/urandom, to get pseudo-random 
bytes.
     - Issue #23093: In the io, module allow more operations to work on detached
       streams.
     - Issue #23071: Added missing names to codecs.__all__.
     - Issue #23016: A warning no longer produces an AttributeError when
       sys.stderr is None.
     - Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
       Original patch by Martin Panter.
     - Issue #22609: Constructors and update methods of mapping classes in the
       collections module now accept the self keyword argument.
     - Issue #23006: Improve the documentation and indexing of dict.__missing__.
       Add an entry in the language datamodel special methods section.
       Revise and index its discussion in the stdtypes mapping/dict section.
       Backport the code example from 3.4.
     - Issue #21514: The documentation of the json module now refers to new
       JSON RFC 7159 instead of obsoleted RFC 4627.
     - Issue #6639: Module-level turtle functions no longer raise TclError after
       closing the window.
     - Issue #22314: pydoc now works when the LINES environment variable is set.
     - Issue #18905: "pydoc -p 0" now outputs actually used port.
     - Issue #23345: Prevent test_ssl failures with large OpenSSL patch level
       values (like 0.9.8zc).
     - Issue #23392: Added tests for marshal C API that works with FILE*.
     - Issue #18982: Add tests for CLI of the calendar module.
     - Issue #19949: The test_xpickle test now tests compatibility with 
installed
       Python 2.7 and reports skipped tests.
     - Issue #11578: Backported test for the timeit module.
     - Issue #22943: bsddb tests are locale independend now.
     - Issue #20577: Configuration of the max line length for the 
FormatParagraph
       extension has been moved from the General tab of the Idle preferences
       dialog to the FormatParagraph tab of the Config Extensions dialog.
     - Issue #16893: Update Idle doc chapter to match current Idle and add new
       information.
     - Issue #23180: Rename IDLE "Windows" menu item to "Window".
     - Issue #15506: Use standard PKG_PROG_PKG_CONFIG autoconf macro in the
       configure script.
     - Issue #22079: PyType_Ready() now checks that statically allocated type 
has
       no dynamically allocated bases.
   * Re-apply the fix for issue #22079. This is now a warning instead of an
     error. LP: #1426294.
   * Fix issue #23842, SystemError in os.minor, os.major. LP: #1435242.
   * When using GCC versions older than 4.9 for extension builds, automagically
     mangle -fstack-protector-strong to -fstack-protector.
   * debian/tests: Use init system agnostic "service" command instead of
     upstart specific "stop". Also drop unnecessary "status" call right after
     stopping apport.
   * Refresh patches.
Checksums-Sha1:
 f56106f3b7e3c56df35f162eb4fa39d3f6e3ee20 3243 python2.7_2.7.9-3.dsc
 9313e0b950e4f46de0f764207a17381e7b787824 480265 python2.7_2.7.9-3.diff.gz
 56f77bded5849f31e172017d7988fa0c64776d73 594432 
python2.7-examples_2.7.9-3_all.deb
 d3c228ed8df3cd3827559283ead50a7bb4b70202 2703586 
libpython2.7-testsuite_2.7.9-3_all.deb
 172e0ba49614602bd4add5ddc4f8075aa4896057 308068 idle-python2.7_2.7.9-3_all.deb
 04477bffbb8344a81007785183bb19c2e84bffdc 3988198 python2.7-doc_2.7.9-3_all.deb
 a1bf397fc9b0c0547365cbbdcc211e6566fe8d8c 257348 python2.7_2.7.9-3_i386.deb
 36cb0ec7caa67c66df06b1e8ac82da9e7b32d74a 1864508 
libpython2.7-stdlib_2.7.9-3_i386.deb
 a01c033dfc8d52b4a8e329334e38ed982edc9030 1397300 
python2.7-minimal_2.7.9-3_i386.deb
 1bd6559f155b76a0575153cac0c6a806680a565b 381238 
libpython2.7-minimal_2.7.9-3_i386.deb
 169fcaa686b802dc9ac783ff58d5fdc64294b4d9 1100874 libpython2.7_2.7.9-3_i386.deb
 667ce22dfdc5a55bccf9c0111710d01daba6b996 278194 python2.7-dev_2.7.9-3_i386.deb
 8dd010ced005873804e3d78ba4c39751a3b948be 18412574 
libpython2.7-dev_2.7.9-3_i386.deb
 703cde0f32e36b411f8edd59e32aeaa4e6e8038d 5494344 python2.7-dbg_2.7.9-3_i386.deb
 ae7d37c27a86dfe23578373448d0d5bbc4441b06 3738186 
libpython2.7-dbg_2.7.9-3_i386.deb
Checksums-Sha256:
 f95834780e466e9e70fe6e179066caea25c7cf0f609b8e054c682041688bab48 3243 
python2.7_2.7.9-3.dsc
 0e98c47817e426e2a1b31518a76f3ce36251917f3b4245f0cde02a86db12df2f 480265 
python2.7_2.7.9-3.diff.gz
 e22db3d4f085052c4941253b7391070a5df2a061f36279dc20e400489509bcbe 594432 
python2.7-examples_2.7.9-3_all.deb
 99207dba5d31fa0b018c16dff16bf3c3ae24879b9daacd23b6e0d96f2e260090 2703586 
libpython2.7-testsuite_2.7.9-3_all.deb
 0cb60017af14cd7348caff703e543a3e9bfe28dcb581db20303dc5a04bb1ce6e 308068 
idle-python2.7_2.7.9-3_all.deb
 df0e99e220da7c193a44bc01782b53d67ac103d717b496a2f57213349db2a0e7 3988198 
python2.7-doc_2.7.9-3_all.deb
 d6b4fc160c30b8ec812172122e5d461dbe5c793b71fc40bfc32455ced9b49cf1 257348 
python2.7_2.7.9-3_i386.deb
 8835943da756932dcf7362258d221df7518940723b2b4672844c211a38c138e4 1864508 
libpython2.7-stdlib_2.7.9-3_i386.deb
 f539fa946a7d19e50141a5d23fcf54cb436e111e41dd75019c5e55a32bf52543 1397300 
python2.7-minimal_2.7.9-3_i386.deb
 7ab4b7153deb5cb4c7fe9fc5e6b41c4b8de69b22df80f71a789dbf119d00d90a 381238 
libpython2.7-minimal_2.7.9-3_i386.deb
 59b5ac428cb56b7265ce9e20207841877205e666c96db9fdb06a94c4b72affeb 1100874 
libpython2.7_2.7.9-3_i386.deb
 e984f3b2ee882241caae6900f7ddc0fd922d8a3fedc1ecb9617df70431d99bbb 278194 
python2.7-dev_2.7.9-3_i386.deb
 a31bb3bfb270054324ba2b540e6fd4aada960c096ecdf3ff4d84977eae6078a7 18412574 
libpython2.7-dev_2.7.9-3_i386.deb
 b3917ede17f0fb4166352909ec301ac1f27fe17bc6528361f4ad031c5b3c73d1 5494344 
python2.7-dbg_2.7.9-3_i386.deb
 8ebdddc2e914901b04326f7788d907d7873f13ac11edb9c592ccbacc923698c6 3738186 
libpython2.7-dbg_2.7.9-3_i386.deb
Files:
 a6bcbe1b3b88a7eeeef4d8b8c0117bd8 3243 python optional python2.7_2.7.9-3.dsc
 9dd59ac40a82a39b476572689d271095 480265 python optional 
python2.7_2.7.9-3.diff.gz
 447cdce72690319d7ca7927eb24b243d 594432 python optional 
python2.7-examples_2.7.9-3_all.deb
 b6dc27621e9dd3551eacedb8aabd5a00 2703586 libdevel optional 
libpython2.7-testsuite_2.7.9-3_all.deb
 dab5074f4205b069337ef903cdce3de7 308068 python optional 
idle-python2.7_2.7.9-3_all.deb
 a2244138eeb22119e5f8dcd0af4463bf 3988198 doc optional 
python2.7-doc_2.7.9-3_all.deb
 2aae8fa15a0460ffa4eaf3f9f5f67ba7 257348 python standard 
python2.7_2.7.9-3_i386.deb
 1f2581c999f126911df11e7ff6d2d50b 1864508 python standard 
libpython2.7-stdlib_2.7.9-3_i386.deb
 d00333bdbc8faa0220652ffd8f9151c5 1397300 python standard 
python2.7-minimal_2.7.9-3_i386.deb
 a7652326121770bfb5f0537e3f0910b9 381238 python standard 
libpython2.7-minimal_2.7.9-3_i386.deb
 5babbcd923569ea35dae4c2ea06e3082 1100874 libs standard 
libpython2.7_2.7.9-3_i386.deb
 f12f2a690b9c0b919ca9d1e74a56d2c1 278194 python optional 
python2.7-dev_2.7.9-3_i386.deb
 0487fac2f70d4e354cad7db8c52bb5b1 18412574 libdevel optional 
libpython2.7-dev_2.7.9-3_i386.deb
 a9cc34389466502cdf31bea3043b5dba 5494344 debug extra 
python2.7-dbg_2.7.9-3_i386.deb
 d598aef76f73357a75f0d58501e1bd0f 3738186 debug extra 
libpython2.7-dbg_2.7.9-3_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJVQKY2AAoJEL1+qmB3j6b1OrMQAJ61tevfFh9ZnAguyK4E3SUz
kZoQ20goAwCyT33vD0uVk7do0mSMWtv5VT5sZ3suGptUJBuLAU/QV6TgZEkjC2Nz
igIl2baNpymvjeQRX2rRI/VRrh7kK6pqZeBUji8OH/5OgF618MPyW7eMc7sGlMOK
fQwoa6VtClNe+OynRZLGEccOOPy5Fp++iEGkcd2RqXvfp8VkfVMifrELbK67Zk6h
ybdY5l/K3zq5teLvxjCX7boAu4o13ta7Puf2QmMYuukDuxhMehpZiq7BZHYxKNHc
r7BQHKAjwKniEToVZq9t78/lXSUDcGWEt44PFpYSpRNqegO7lu+uT9JC1rzw69E9
KNsr7YRQdbXWseooNnVbpfCTibmpJTer87seM/V1Jf89I9pr1pax4hj69kvyzhlV
tvyKpG0o/lCsni3V2Jj6Tqy8x6k1IAyfAog7YaNutmxf7y+DCwmLnRyT+stnofRV
/8GCkDA3GeRS1CmkoqaiPGOQH8irVZGEHp5PaP7P++cb8YA6MltE6DNwhoBrExRJ
8+GlvXsSxxdiHPXOnq1Mng3xa8YZANL9ycs5PIh/UBOaGsYJj/vvr0ucubXzJggO
VjgVOSMe8kmzB5BzJmI9uoDf8c+B6q/g/2YZus/jj77tPj2hVfiFkbMWWn0MgP6A
t6f4NkY+pLbSqukr2opy
=G7j7
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1ynqho-0007c5...@franck.debian.org

Reply via email to