Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AmitKumar79/PythonBegin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: AmitKumar79/PythonBegin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.3
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 55 files changed
  • 6 contributors

Commits on Jun 22, 2017

  1. Add "Misc/NEWS.d" directory tree for "blurb". GH-2332

    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).
    larryhastings authored Jun 22, 2017
    Configuration menu
    Copy the full SHA
    87700f1 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2017

  1. Bump PY_VERSION to 3.3.6+

    ned-deily committed Jul 16, 2017
    Configuration menu
    Copy the full SHA
    5caddea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0c0898 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8fb577e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b52c007 View commit details
    Browse the repository at this point in the history
  5. [3.3] bpo-29591, bpo-30694: Upgrade Modules/expat to libexpat 2.2.1 (…

    …#2164) (#2204)
    
    * 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 23ec4b5)
    
    * bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300)
    
    New file: Modules/expat/siphash.h.
    (cherry picked from commit 5ff7132)
    
    * 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 <[email protected]>
    (cherry picked from commit c8fb58b)
    
    * 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 87c6555)
    vstinner authored and ned-deily committed Jul 16, 2017
    Configuration menu
    Copy the full SHA
    ab90986 View commit details
    Browse the repository at this point in the history
  6. Avoid _GNU_SOURCE redefined warning in xmlparse.c (#2670)

    (cherry picked from commit f523255)
    segevfiner authored and ned-deily committed Jul 16, 2017
    Configuration menu
    Copy the full SHA
    4956dd2 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2017

  1. [3.3] bpo-30585: [security] raise an error when STARTTLS fails (#225)

    (cherry picked from commit 46b32f3)
    vstinner authored and ned-deily committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    3625f7f View commit details
    Browse the repository at this point in the history
  2. [security][3.3] bpo-30730: Prevent environment variables injection in…

    … subprocess on Windows. (GH-2325) (#2363)
    serhiy-storchaka authored and ned-deily committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    e46f1c1 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2017

  1. [3.3] Backport CI config from master and remove skipped imaplib tests…

    … (#2481)
    
    * Backport Travis CI config from master
    
    Add .travis.yml for Travis CI.
    
    * 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 7895a05)
    vstinner authored and ned-deily committed Jul 20, 2017
    Configuration menu
    Copy the full SHA
    b5f20ea View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2017

  1. [3.3] bpo-30500: urllib: Simplify splithost by calling into urlparse.…

    … (#1849) (#2292)
    
    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 90e01e5)
    (cherry picked from commit cc54c1c)
    vstinner authored and ned-deily committed Jul 26, 2017
    Configuration menu
    Copy the full SHA
    052f9d6 View commit details
    Browse the repository at this point in the history
  2. [3.3] [3.5] bpo-27945: Fixed various segfaults with dict. (GH-1657) (…

    …GH-1678) (#2396)
    
    Based on patches by Duane Griffin and Tim Mitchell.
    (cherry picked from commit 753bca3).
    (cherry picked from commit 2f7f533)
    serhiy-storchaka authored and ned-deily committed Jul 26, 2017
    Configuration menu
    Copy the full SHA
    8fbdab5 View commit details
    Browse the repository at this point in the history
  3. [3.3] bpo-22928: Disabled HTTP header injections in http.client. (#2817)

    Original patch by Demian Brecht..
    (cherry picked from commit a112a8a)
    serhiy-storchaka authored and ned-deily committed Jul 26, 2017
    Configuration menu
    Copy the full SHA
    8e88f6b View commit details
    Browse the repository at this point in the history
  4. bpo-26657: Fix Windows directory traversal vulnerability with http.se…

    …rver (#782) (#2860)
    
    Based on patch by Philipp Hagemeister.  This fixes a regression caused by
    revision f4377699fd47.
    
    (cherry picked from commit d274b3f)
    (cherry picked from commit 6f6bc1d)
    vstinner authored and ned-deily committed Jul 26, 2017
    Configuration menu
    Copy the full SHA
    7b92f9f View commit details
    Browse the repository at this point in the history
  5. [3.3] bpo-30119: fix ftplib.FTP.putline() to throw an error for a ill…

    …egal command (#1214) (#2885)
    corona10 authored and ned-deily committed Jul 26, 2017
    Configuration menu
    Copy the full SHA
    a4e774f View commit details
    Browse the repository at this point in the history
Loading