Skip to content
Permalink
Branch: master
Commits on Jul 1, 2020
  1. Add lysnikolaou to CODEOWNERS for the new parser (GH-21252)

    lysnikolaou committed Jul 1, 2020
  2. Doc: Minor fix to init config C API documentation (GH-21198)

    tomerv and Tomer Vromen committed Jul 1, 2020
    Co-authored-by: Tomer Vromen <tomer.vromen@intel.com>
Commits on Jun 30, 2020
  1. bpo-41161 Add news entry for libmpdec-2.5.0 (GH-21243)

    skrah committed Jun 30, 2020
  2. bpo-39314: Closes parenthesis when autocompleting for functions that …

    remilapeyre committed Jun 30, 2020
    …take no arguments (GH-20562)
  3. Update FAQ release schedule and estimated users (GH-21180)

    E-Paine committed Jun 30, 2020
    Update FAQ to include:
    * The new yearly release schedule from PEP 602
    * Estimated users from "tens of thousands" to "millions"
  4. bpo-41100: fix _decimal for arm64 Mac OS (GH-21228)

    lawrence-danna-apple committed Jun 30, 2020
    Patch by Lawrence Danna.
  5. bpo-41142: Add support of non-ASCII paths for CAB files. (GH-21195)

    serhiy-storchaka committed Jun 30, 2020
    * The path to the CAB file can be non-ASCII.
    * Paths of added files can be non-ASCII.
  6. bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209)

    methane committed Jun 30, 2020
Commits on Jun 29, 2020
  1. bpo-23427: Add sys.orig_argv attribute (GH-20729)

    vstinner committed Jun 29, 2020
    Add sys.orig_argv attribute: the list of the original command line
    arguments passed to the Python executable.
    
    Rename also PyConfig._orig_argv to PyConfig.orig_argv and
    document it.
  2. bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)

    serhiy-storchaka committed Jun 29, 2020
    Since PyLong_AsLong() no longer use __int__, explicit call
    of PyNumber_Index() before it is no longer needed.
  3. Fix typo in Object/listobject.c (GH-21079)

    jeongukjae committed Jun 29, 2020
  4. bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (

    rvteja92 committed Jun 29, 2020
    GH-21033)
    
    The __hash__() methods of classes IPv4Interface and IPv6Interface had issue
    of generating constant hash values of 32 and 128 respectively causing hash collisions.
    The fix uses the hash() function to generate hash values for the objects
    instead of XOR operation
  5. Update libmpdec license dates (GH-21216)

    skrah committed Jun 29, 2020
  6. bpo-41048: mimetypes should read the rule file using UTF-8, not the l…

    srinivasreddy committed Jun 29, 2020
    …ocale encoding (GH-20998)
  7. bpo-41123: Remove PyLong_FromUnicode() (GH-21204)

    methane committed Jun 29, 2020
  8. bpo-41123: Remove PyUnicode_GetMax() (GH-21192)

    methane committed Jun 29, 2020
Commits on Jun 28, 2020
  1. bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177)

    serhiy-storchaka committed Jun 28, 2020
    Fix also a resource warning when store counts and module info.
  2. bpo-41144: Fix IDLE open module error (#21182)

    E-Paine and terryjreedy committed Jun 28, 2020
    Could not open os.path.
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  3. bpo-38870: Extend subject of ast.unparse warnings (GH-21053)

    isidentical committed Jun 28, 2020
    - Mention that some compiler optimizations might not roundtrip
    exactly (such as constant tuples and frozensets).
    
    - Add a warning about it might raise RecursionError on very
    complex expressions due to recursive unparsing aspect of ast.unparse
  4. bpo-39151: Simplify DFS in the assembler (GH-17733)

    pablogsal committed Jun 28, 2020
Commits on Jun 27, 2020
  1. bpo-41076: Pre-feed the parser with the f-string expression location (G…

    lysnikolaou committed Jun 27, 2020
    …H-21054)
    
    This commit changes the parsing of f-string expressions with the new parser. The parser gets pre-fed with the location of the expression itself (not the f-string, which was what we were doing before). This allows us to completely skip the shifting of the AST nodes after the parsing is completed.
  2. Add soft keywords to the documentation (GH-21185)

    pablogsal committed Jun 27, 2020
  3. bpo-40769: Allow extra surrounding parentheses for invalid annotated …

    isidentical committed Jun 27, 2020
    …assignment rule (GH-20387)
  4. Remove dead code from tracemalloc (GH-21029)

    tiran committed Jun 27, 2020
    tracemalloc_get_frame() checked filename == NULL two times in a row.
    
    Signed-off-by: Christian Heimes <christian@python.org>
Older
You can’t perform that action at this time.