- 04 Şub, 2018 4 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
larryhastings yazdı
* [3.5] Remove failing pyenv call from CI config * Backport XML RPC test skip to 3.5 The buildbot service upgrade removed the XML-RPC interface, so this test no longer works (through no fault of the standard library). (cherry picked from commit 4a4c2743) Co-authored-by:
Nick Coghlan <ncoghlan@gmail.com>
-
Larry Hastings yazdı
-
- 23 Ock, 2018 2 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
- 22 Ock, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
* [3.4] bpo-32072: Fix issues with binary plists. (GH-4455) * Fixed saving bytearrays. * Identical objects will be saved only once. * Equal references will be load as identical objects. * Added support for saving and loading recursive data structures.. (cherry picked from commit a897aeee) * Fix implementation dependent assertion in test_plistlib. (#4813) It is failed with an advanced optimizer.
-
- 08 Ara, 2017 2 kayıt (commit)
-
-
Victor Stinner yazdı
(cherry picked from commit dd2000cb)
-
Miro Hrončok yazdı
Fixes possible integer overflow in PyBytes_DecodeEscape. Co-Authored-By:
Jay Bosamiya <jaybosamiya@gmail.com>
-
- 29 Kas, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-31170: Fix inclusion of expat in Windows build projects Co-Authored-By:
Steve Dower <steve.dower@microsoft.com> * expat: Fix compilation on Visual Studio 2010 The standard header stdbool.h is not available with old Visual Studio compilers Cherry-picked from libexpat commit b4b89c2ab0cc5325a41360c25ef9d2ccbe617e5c. expat: Add artificial scopes in xmltok.c utf8_toUtf8() to fix c89 compilation. Cherry-picked from libexpat commit e0b290eb3d8f4c4b45137a7d7f4f8db812145bd2 * Expat: fix preprocessor defines in VS projects Remove the following defines: * BYTEORDER=1234 * HAVE_MEMMOVE * USE_PYEXPAT_CAPI * XML_CONTEXT_BYTES=1024 * XML_DTD * XML_NS * XML_STATIC * PCbuild/pyexpat.vcxproj: define _CRT_SECURE_NO_WARNINGS
-
- 12 Eki, 2017 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 04 Eki, 2017 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 24 Eyl, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-30947, bpo-31170: Update expat from 2.2.1 to 2.2.4 * Upgrade libexpat embedded copy from version 2.2.1 to 2.2.3 to get security fixes. * Update libexpat from 2.2.3 to 2.2.4. Fix copying of partial characters for UTF-8 input (libexpat bug 115): https://github.com/libexpat/libexpat/issues/115 * Define XML_POOR_ENTROPY when compiling expat
-
- 16 Agu, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Python 3.4 backport: convert the Misc/NEWS entry using blurb. (cherry picked from commit 34e7e2ec)
-
- 09 Agu, 2017 3 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
- 28 Tem, 2017 1 kayıt (commit)
-
- 27 Tem, 2017 1 kayıt (commit)
-
-
Dong-hee Na yazdı
-
- 25 Tem, 2017 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 24 Tem, 2017 4 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
- 22 Tem, 2017 3 kayıt (commit)
-
-
Victor Stinner yazdı
* Issues #23808, #25911: Trying to fix walk tests on Windows. On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag. (cherry picked from commit 388b90f2) * bpo-30231: Remove skipped test_imaplib tests (#1419) (#2193) The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. Remove the two tests which are already skipped. (cherry picked from commit 7895a058) * Backport CI config from master * Add .travis.yml for Travis CI * Add .github/ for AppVeyor and CodeCov. * Travis CI: remove "make regen-all" check The regen-all Makefile rule doesn't exist in Python 3.4, only since Python 3.5 and newer (and 2.7). * appveyor: replace --slowest with --slow * Travis CI: remove the GCC coverage job * Travis CI: remove tzdata resource from regrtest tzdata resource doesn't exist in Python 3.4. * Travis CI: remove the doc job Fixing Sphinx warnings requires to backport huge intrusive changes like: - commit d97b7dc9 - commit 5c679339 * appveyor: set version to 3.4.6+ * bpo-30730: Fix test_os tests. Fix test_invalid_cmd() and test_invalid_env(), TypeError is raised on Python 3.4. (cherry picked from commit 5e22721e586344b547194f0f7ea67fd425f94e72)
-
Serhiy Storchaka yazdı
* [3.4] bpo-26617: Ensure gc tracking is off when invoking weakref callbacks. (cherry picked from commit 8f657c35) * Rewrite a NEWS entry as a NEWS.d entry.
-
- 12 Tem, 2017 3 kayıt (commit)
-
-
Victor Stinner yazdı
Based on patch by Philipp Hagemeister. This fixes a regression caused by revision f4377699fd47. (cherry picked from commit d274b3f1)
-
Victor Stinner yazdı
The current regex based splitting produces a wrong result. For example:: http://abc#@def Web browsers parse that URL as ``http://abc/#@def``, that is, the host is ``abc``, the path is ``/``, and the fragment is ``#@def``. (cherry picked from commit 90e01e50)
-
Victor Stinner yazdı
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) * bpo-29591: Upgrade Modules/expat to libexpat 2.2 * bpo-29591: Restore Python changes on expat * bpo-29591: Remove expat config of unsupported platforms Remove the configuration (Modules/expat/*config.h) of unsupported platforms: * Amiga * MacOS Classic on PPC32 * Open Watcom * bpo-29591: Remove useless XML_HAS_SET_HASH_SALT The XML_HAS_SET_HASH_SALT define of Modules/expat/expat.h became useless since our local expat copy was upgrade to expat 2.1 (it's now expat 2.2.0). (cherry picked from commit 23ec4b57) * bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) New file: Modules/expat/siphash.h. (cherry picked from commit 5ff71323) * bpo-30726: PCbuild _elementtree: remove duplicate defines (#2348) bpo-30726, bpo-29591: libexpat 2.2.1 of Modules/expat/ now uses a winconfig.h configuration file which already defines: * XML_NS * XML_DTD * BYTEORDER=1234 * XML_CONTEXT_BYTES=1024 * HAVE_MEMMOVE Remove these defines from PCbuild/_elementtree.vcxproj to prevent compiler warnings. Co-Authored-By:
Jeremy Kloth <jeremy.kloth@gmail.com> (cherry picked from commit c8fb58bd) * bpo-30726: Fix elementtree warnings on Windows due to expat upgrade (#2319) * bpo-30726: Fix elementtree warnings on Windows Caused by usage of `getenv` which should be safe. And a few integer truncations which should also be ok. * bpo-30726: Don't ignore libexpat warnings which haypo intends to fix upstream (cherry picked from commit 87c65550)
-
- 11 Tem, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patches by Duane Griffin and Tim Mitchell. (cherry picked from commit 753bca39). (cherry picked from commit 2f7f533c)
-
Serhiy Storchaka yazdı
[security][3.4] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2362) * [3.4] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) Prevent passing other invalid environment variables and command arguments.. (cherry picked from commit d174d24a) * Update NEWS
-
- 22 Haz, 2017 1 kayıt (commit)
-
-
larryhastings yazdı
CPython workflow is changing! We're going to start using "blurb" to manage Misc/NEWS entries: https://github.com/python/core-workflow (This will be a big win for release managers, honest.) This checkin simply populates the "Misc/NEWS.d" subdirectory tree so that people can start putting their news entries in there. No other changes (yet).
-
- 10 Mar, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. (#224) Backport: replace 3.5.3 with 3.4.7 in the doc versionchanged. (cherry picked from commit 03d13c0c)
-
- 24 Şub, 2017 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 17 Ock, 2017 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 16 Ock, 2017 2 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
- 03 Ock, 2017 2 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-