python3.4 3.4.0-2 source package in Ubuntu

Changelog

python3.4 (3.4.0-2) unstable; urgency=medium


  * Update to 20140407 from the 3.4 branch.
    - Issue #21134: Fix segfault when str is called on an uninitialized
      UnicodeEncodeError, UnicodeDecodeError, or UnicodeTranslateError object.
    - Issue #19537: Fix PyUnicode_DATA() alignment under m68k.
    - Issue #21155: asyncio.EventLoop.create_unix_server() now raises
      a ValueError if path and sock are specified at the same time.
    - Issue #21149: Improved thread-safety in logging cleanup during
      interpreter shutdown.
    - Issue #20145: `assertRaisesRegex` and `assertWarnsRegex` now raise a
      TypeError if the second argument is not a string or compiled regex.
    - Issue #21058: Fix a leak of file descriptor in
      :func:`tempfile.NamedTemporaryFile`, close the file descriptor if
      :func:`io.open` fails.
    - Issue #21013: Enhance ssl.create_default_context() when used for server
      side sockets to provide better security by default.
    - Issue #20633: Replace relative import by absolute import.
    - Issue #20980: Stop wrapping exception when using ThreadPool.
    - Issue #21082: In os.makedirs, do not set the process-wide umask.
      Note this changes behavior of makedirs when exist_ok=True.
    - Issue #20990: Fix issues found by pyflakes for multiprocessing.
    - Issue #21015: SSL contexts will now automatically select an elliptic
      curve for ECDH key exchange on OpenSSL 1.0.2 and later, and otherwise
      default to "prime256v1".
    - Issue #20816: Fix inspect.getcallargs() to raise correct TypeError for
      missing keyword-only arguments.
    - Issue #20817: Fix inspect.getcallargs() to fail correctly if more
      than 3 arguments are missing.
    - Issue #6676: Ensure a meaningful exception is raised when attempting
      to parse more than one XML document per pyexpat xmlparser instance.
    - Issue #20942: PyImport_ImportFrozenModuleObject() no longer sets __file__
      to match what importlib does; this affects _frozen_importlib as well as
      any module loaded using imp.init_frozen().
    - Documentation, tools, demo and test updates.
  * Depend on the python3-tk packages in the autopkg tests.
  * Fix LTO builds with GCC 4.9.

 -- Matthias Klose <email address hidden>  Mon, 07 Apr 2014 11:46:02 +0200

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Sid
Original maintainer:
Matthias Klose
Architectures:
any all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
python3.4_3.4.0-2.dsc 2.4 KiB e774088d6ec4a327d36650013886454f3b5bf027bcb6d1061620174b9f6d8312
python3.4_3.4.0.orig.tar.gz 18.4 MiB 21560795b5957f27f98e30f0af7303f5e0a9c1b4da8b241941824ae836f04397
python3.4_3.4.0-2.diff.gz 350.4 KiB 63d3bd02bebc69be242368b0d8de972d7edff5dddb5da972e48f77c3e7a4a4f4

Available diffs

No changes file available.

Binary packages built by this source

idle-python3.4: IDE for Python (v3.4) using Tkinter

 IDLE is an Integrated Development Environment for Python (v3.4).
 IDLE is written using Tkinter and therefore quite platform-independent.

libpython3.4: Shared Python runtime library (version 3.4)

 Python is a high-level, interactive, object-oriented language. Its 3.4 version
 includes an extensive class library with lots of goodies for
 network programming, system administration, sounds and graphics.
 .
 This package contains the shared runtime library, normally not needed
 for programs using the statically linked interpreter.

libpython3.4-dbg: Debug Build of the Python Interpreter (version 3.4)

 The package holds two things:
 .
 - Extensions for a Python interpreter configured with --pydebug.
 - Debug information for standard python extensions.
 .
 See the README.debug for more information.

libpython3.4-dev: Header files and a static library for Python (v3.4)

 Header files, a static library and development tools for building
 Python (v3.4) modules, extending the Python interpreter or embedding
 Python (v3.4) in applications.
 .
 Maintainers of Python packages should read README.maintainers.
 .
 This package contains development files. It is normally not
 used on it's own, but as a dependency of python3.4-dev.

libpython3.4-minimal: Minimal subset of the Python language (version 3.4)

 This package contains some essential modules. It is normally not
 used on it's own, but as a dependency of python3.4-minimal.

libpython3.4-stdlib: Interactive high-level object-oriented language (standard library, version 3.4)

 Python is a high-level, interactive, object-oriented language. Its 3.4 version
 includes an extensive class library with lots of goodies for
 network programming, system administration, sounds and graphics.
 .
 This package contains Python 3.4's standard library. It is normally not
 used on its own, but as a dependency of python3.4.

libpython3.4-testsuite: Testsuite for the Python standard library (v3.4)

 The complete testsuite for the Python standard library. Note that
 a subset is found in the libpython3.4-stdlib package, which should
 be enough for other packages to use (please do not build-depend
 on this package, but file a bug report to include additional
 testsuite files in the libpython3.4-stdlib package).

python3.4: Interactive high-level object-oriented language (version 3.4)

 Python is a high-level, interactive, object-oriented language. Its 3.4 version
 includes an extensive class library with lots of goodies for
 network programming, system administration, sounds and graphics.

python3.4-dbg: Debug Build of the Python Interpreter (version 3.4)

 The package holds two things:
 .
 - A Python interpreter configured with --pydebug. Dynamically loaded modules
   are searched as <foo>_d.so first. Third party extensions need a separate
   build to be used by this interpreter.
 - Debug information for standard python interpreter and extensions.
 .
 See the README.debug for more information.

python3.4-dev: Header files and a static library for Python (v3.4)

 Header files, a static library and development tools for building
 Python (v3.4) modules, extending the Python interpreter or embedding
 Python (v3.4) in applications.
 .
 Maintainers of Python packages should read README.maintainers.

python3.4-doc: Documentation for the high-level object-oriented language Python (v3.4)

 These is the official set of documentation for the interactive high-level
 object-oriented language Python (v3.4). All documents are provided
 in HTML format. The package consists of ten documents:
 .
   * What's New in Python3.4
   * Tutorial
   * Python Library Reference
   * Macintosh Module Reference
   * Python Language Reference
   * Extending and Embedding Python
   * Python/C API Reference
   * Installing Python Modules
   * Documenting Python
   * Distributing Python Modules

python3.4-examples: Examples for the Python language (v3.4)

 Examples, Demos and Tools for Python (v3.4). These are files included in
 the upstream Python distribution (v3.4).

python3.4-minimal: Minimal subset of the Python language (version 3.4)

 This package contains the interpreter and some essential modules. It can
 be used in the boot process for some basic tasks.
 See /usr/share/doc/python3.4-minimal/README.Debian for a list of the modules
 contained in this package.