1. 23 Ock, 2018 2 kayıt (commit)
    • Nick Coghlan's avatar
      [3.5] bpo-32563: Get expat to compile under C89 (#5201) · 57fa0ab8
      Nick Coghlan yazdı
      * [3.5] bpo-32563: Get expat to compile under C89
      
      expat: Add artificial scopes in xmltok.c utf8_toUtf8() to fix c89 compilation.
      
      Cherry-picked from libexpat commit e0b290eb3d8f4c4b45137a7d7f4f8db812145bd2
      
      * 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).
      
      * Don't configure a nonexistent Python
      57fa0ab8
    • Nick Coghlan's avatar
      [3.5] bpo-32620: Remove failing pyenv call from CI config (#5274) · 4a4c2743
      Nick Coghlan 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).
      4a4c2743
  2. 08 Ara, 2017 1 kayıt (commit)
  3. 12 Eki, 2017 1 kayıt (commit)
  4. 04 Eki, 2017 1 kayıt (commit)
  5. 26 Eyl, 2017 2 kayıt (commit)
  6. 25 Eyl, 2017 1 kayıt (commit)
  7. 24 Eyl, 2017 1 kayıt (commit)
  8. 08 Eyl, 2017 2 kayıt (commit)
    • Mariatta's avatar
      [3.5] Fix broken `Show Source` links on documentation pages (GH-3113) (#3126) · 0d68d6d9
      Mariatta yazdı
      The `Show Source` was broken because of a change made in sphinx 1.5.1
      In Sphinx 1.4.9, the sourcename was "index.txt".
      In Sphinx 1.5.1+, it is now "index.rst.txt".
      (cherry picked from commit b9ff4987)
      0d68d6d9
    • Ned Deily's avatar
      [3.5] bpo-31036: Allow sphinx and blurb to be found automatically (GH-3440) · 9cc33209
      Ned Deily yazdı
      Rather than requiring the path to blurb and/or sphinx-build to be specified to
      the make rule, enhance the Doc/Makefile to look for each first in a virtual
      environment created by make venv and, if not found, look on the normal process
      PATH. This allows the Doc/Makefile to take advantage of an installed
      spinx-build or blurb and, thus, do the right thing most of the time. Also, make
      the directory for the venv be configurable and document the `make venv` target.
      9cc33209
  9. 08 Agu, 2017 2 kayıt (commit)
  10. 07 Agu, 2017 5 kayıt (commit)
  11. 01 Agu, 2017 2 kayıt (commit)
  12. 29 Tem, 2017 1 kayıt (commit)
  13. 27 Tem, 2017 2 kayıt (commit)
  14. 26 Tem, 2017 1 kayıt (commit)
  15. 25 Tem, 2017 3 kayıt (commit)
  16. 24 Tem, 2017 7 kayıt (commit)
  17. 23 Tem, 2017 3 kayıt (commit)
  18. 21 Tem, 2017 1 kayıt (commit)
    • Berker Peksag's avatar
      [3.5] bpo-29403: Fix mock's broken autospec behavior on method-bound builtin functions (GH-3) · e78dc0aa
      Berker Peksag yazdı
      Cython will, in the right circumstances, offer a MethodType instance
      where im_func is a builtin function. Any instance of MethodType is
      automatically assumed to be a Python-defined function (more
      specifically, a function that has an inspectable signature), but
      _set_signature was still conservative in its assumptions. As a result
      _set_signature would return early with None instead of a mock since
      the im_func had no inspectable signature. This causes problems
      deeper inside mock, as _set_signature is assumed to _always_
      return a mock, and nothing checked its return value.
      
      In similar corner cases, autospec will simply not check the spec of the
      function, so _set_signature is amended to now return early with the
      original, not-wrapped mock object.
      
      Patch by Aaron Gallagher.
      
      (cherry picked from commit 856cbcc1)
      e78dc0aa
  19. 20 Tem, 2017 2 kayıt (commit)
    • Victor Stinner's avatar
      bpo-30822: regrtest: remove tzdata (#2782) · bf3a1e97
      Victor Stinner yazdı
      * Oops, tzdata was introduced in Python 3.6: remove it from regrtest
      * Remove also Lib/test/libregrtest/__init__.py file: add by mistake
        on a backport.
      bf3a1e97
    • Victor Stinner's avatar
      bpo-30822: Exclude tzdata from regrtest --all (#2775) (#2781) · 645e503b
      Victor Stinner yazdı
      When running the test suite using --use=all / -u all, exclude tzdata
      since it makes test_datetime too slow (15-20 min on some buildbots)
      which then times out on some buildbots.
      
      -u tzdata must now be enabled explicitly, -u tzdata or -u all,tzdata,
      to run all test_datetime tests.
      
      Fix also regrtest command line parser to allow passing -u
      extralargefile to run test_zipfile64.
      
      Travis CI: remove -tzdata. Replace -u all,-tzdata,-cpu with -u all,-cpu since tzdata is now excluded from -u all.
      (cherry picked from commit 5b392bba)
      645e503b