Skip to content

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Apr 4, 2019

  1. Copy the full SHA
    ded4737 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    461c416 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2019

  1. bpo-36440: include node names in ParserError messages, instead of num…

    …eric IDs (pythonGH-12565)
    
    The error messages in the parser module are referring to numeric IDs for the nodes. To improve readability, use the node names when reporting errors.
    tyomitch authored and pablogsal committed Apr 3, 2019
    Copy the full SHA
    cb0748d View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2019

  1. Have UserDict.__init__() implicitly check for updating w/ bool(kwargs…

    …) instead of len() (pythonGH-12139)
    
    Semantically the same, but more idiomatic by checking against `kwargs` instead of `len(kwargs)`.
    3lnc authored and miss-islington committed Apr 2, 2019
    Copy the full SHA
    76b387b View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    1c5fa5a View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    fcef60f View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    487b73a View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    b8311cf View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    04694a3 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    e6a0e80 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    b00479d View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2019

  1. Copy the full SHA
    9139f92 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    b4bcefe View commit details
    Browse the repository at this point in the history
  3. bpo-36157:Document PyInterpreterState_Main() (pythonGH-12238)

    I have added documentation for `PyInterpreterState_Main()`.
     I chose to place it under Advanced Debugger Support together with similar functions like `PyInterpreterState_Head()`, `PyInterpreterState_Next(`), and `PyInterpreterState_ThreadHead()` .
    
    
    https://bugs.python.org/issue36157
    nanjekyejoannah authored and miss-islington committed Apr 1, 2019
    Copy the full SHA
    8c61739 View commit details
    Browse the repository at this point in the history
  4. bpo-36495: Fix two out-of-bounds array reads (pythonGH-12641)

    Research and fix by @bradlarsen.
    bradlarsen authored and gvanrossum committed Apr 1, 2019
    Copy the full SHA
    a4d7836 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    10654c1 View commit details
    Browse the repository at this point in the history
  6. bpo-36026: make descr error message consistent (pythonGH-11930)

    set.add(0) and set.add.__get__(0) now raise TypeError
    with same error message.
    methane committed Apr 1, 2019
    Copy the full SHA
    62f9588 View commit details
    Browse the repository at this point in the history
  7. bpo-36492: Deprecate passing some arguments as keyword arguments. (py…

    …thonGH-12637)
    
    Deprecated passing the following arguments as keyword arguments:
    
    - "func" in functools.partialmethod(), weakref.finalize(),
      profile.Profile.runcall(), cProfile.Profile.runcall(),
      bdb.Bdb.runcall(), trace.Trace.runfunc() and
      curses.wrapper().
    - "function" in unittest.addModuleCleanup() and
      unittest.TestCase.addCleanup().
    - "fn" in the submit() method of concurrent.futures.ThreadPoolExecutor
      and concurrent.futures.ProcessPoolExecutor.
    - "callback" in contextlib.ExitStack.callback(),
      contextlib.AsyncExitStack.callback() and
      contextlib.AsyncExitStack.push_async_callback().
    - "c" and "typeid" in the create() method of multiprocessing.managers.Server
      and multiprocessing.managers.SharedMemoryServer.
    - "obj" in weakref.finalize().
    
    Also allowed to pass arbitrary keyword arguments (even "self" and "func")
    if the above arguments are passed as positional argument.
    serhiy-storchaka committed Apr 1, 2019
    Copy the full SHA
    42a139e View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2019

  1. Copy the full SHA
    5f2c508 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    48600c7 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    79da388 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    ac19d96 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2019

  1. Copy the full SHA
    e724152 View commit details
    Browse the repository at this point in the history
  2. bpo-36384: Remove check for leading zeroes in IPv4 addresses (pythonG…

    …H-12577)
    
    Stop rejecting IPv4 octets with leading zeroes as ambiguously octal.
    
    Plenty of other tools generate decimal IPv4 octets with leading zeroes,
    so keeping this check hurts interoperability.
    
    Patch by Joel Croteau.
    TV4Fun authored and ncoghlan committed Mar 30, 2019
    Copy the full SHA
    e653d4d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    ddbb978 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    172bb39 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    afbb7a3 View commit details
    Browse the repository at this point in the history
  6. bpo-36434: Properly handle writing errors in ZIP files. (pythonGH-12559)

    Errors during writing no longer prevent to properly close
    the ZIP file.
    serhiy-storchaka committed Mar 30, 2019
    Copy the full SHA
    2524fde View commit details
    Browse the repository at this point in the history
  7. bpo-24214: Fixed the UTF-8 incremental decoder. (pythonGH-12603)

    The bug occurred when the encoded surrogate character is passed
    to the incremental decoder in two chunks.
    serhiy-storchaka committed Mar 30, 2019
    Copy the full SHA
    7a465cb View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    38f4e46 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    7444daa View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. Copy the full SHA
    2438cdf View commit details
    Browse the repository at this point in the history
  2. bpo-35947: Update Windows to the current version of libffi (pythonGH-…

    …11797)
    
    We now use a pre-built libffi binary from our binaries repository, and no longer vendor the full implementation.
    paulmon authored and zooba committed Mar 29, 2019
    Copy the full SHA
    32119e1 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    3396d1e View commit details
    Browse the repository at this point in the history
  4. bpo-36471: Add _Py_RunMain() (pythonGH-12618)

    * Add config_read_cmdline() subfunction. Remove _PyCmdline structure.
    * _PyCoreConfig_Read() now also parses config->argv command line
      arguments
    vstinner committed Mar 29, 2019
    Copy the full SHA
    2f54908 View commit details
    Browse the repository at this point in the history
Older