Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40846: Clarified definition of parameters #20603

Closed
wants to merge 1,476 commits into from

Conversation

arun-mani-j
Copy link
Contributor

@arun-mani-j arun-mani-j commented Jun 3, 2020

Parameters do not define what "type" of arguments it can hold. Changed the word "type" to "kind".

https://bugs.python.org/issue40846

miss-islington and others added 30 commits February 24, 2020 07:06
GH- [bpo-39128](https://bugs.python.org/issue39128): happy eyeballs description

GH- [3.9] 39128 - happy eyeballs description (pythonGH-18624)
GH- [3.8] 39128 - happy eyeballs description (pythonGH-18624)

https://bugs.python.org/issue39128
(cherry picked from commit 8af4712)

Co-authored-by: idomic <michael.ido@gmail.com>
Trying to decode an invalid string with the punycode codec
shoud raise UnicodeError.

(cherry picked from commit ba22e8f)

Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
…pythonGH-18657)

(cherry picked from commit d644891)

Co-authored-by: Steve Dower <steve.dower@python.org>
(cherry picked from commit 57c7a0b)

Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Co-authored-by: Ammar Askar <ammar_askar@hotmail.com>
Previously, the button-up part of selecting with a mouse was treated as a click
that meant 'jump' to this line, which modified the context and undid the selection
(cherry picked from commit c705fd1)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
…-18690)

(cherry picked from commit 916895f)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
…onGH-18598)

(cherry picked from commit c2f7eb2)

Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com>
…-18695)

Also fixes some potential Nuget build issues.
(cherry picked from commit 03153dd)

Co-authored-by: Steve Dower <steve.dower@python.org>
…ythonGH-18338)

* bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest authentication

 - The 'qop' value in the 'WWW-Authenticate' header is optional. The
   presence of 'qop' in the header should be checked before its value
   is parsed with 'split'.

Signed-off-by: Stephen Balousek <stephen@balousek.net>

* bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest authentication

 - Add NEWS item

Signed-off-by: Stephen Balousek <stephen@balousek.net>

* Update Misc/NEWS.d/next/Library/2020-02-06-05-33-52.bpo-39548.DF4FFe.rst

Co-Authored-By: Brandt Bucher <brandtbucher@gmail.com>

Co-authored-by: Brandt Bucher <brandtbucher@gmail.com>
(cherry picked from commit 5e260e0)

Co-authored-by: Stephen Balousek <sbalousek@users.noreply.github.com>
…H-18718)

Fix compileall.compile_dir() ddir= behavior on sub-packages.

Fixes compileall.compile_dir's ddir parameter and compileall command
line flag `-d` to no longer write the wrong pathname to the generated
pyc file for submodules beneath the root of the directory tree being
compiled.  This fixes a regression introduced with Python 3.5.

Tests backported from GH 0267335, the
implementation is different due to intervening code changes.  But still
quiet simple.

Why was the bug ever introduced?  The refactoring to add parallel
execution kept the ddir -> dfile computations but discarded the results
instead of sending them to compile_file().  This fixes that.  Lack of tests
meant this went unnoticed.
…H-18728)

Automerge-Triggered-By: @pablogsal.
(cherry picked from commit 217dce9)

Co-authored-by: Hakan Çelik <hakancelik96@outlook.com>
…GH-18046)

(cherry picked from commit 1f577ce)

Co-authored-by: Hai Shi <shihai1992@gmail.com>
_PyEval_SetAsyncGenFinalizer() and _PyEval_SetAsyncGenFirstiter()
didn't include proper error handling for their PySys_Audit() calls.

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
…thonGH-17666)

Open issue in the BPO indicated a desire to make the implementation of
codecs.open() at parity with io.open(), which implements a try/except to
assure file stream gets closed before an exception is raised.
(cherry picked from commit 2565ede)

Co-authored-by: Chris A <christopher.aporta@gmail.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
(cherry picked from commit 4482337)

Co-authored-by: Lidi Zheng <scallopsky@gmail.com>
…18678)

Automerge-Triggered-By: @zooba
(cherry picked from commit 1382c32)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
…_traverse and tp_clear (pythonGH-18749) (pythonGH-18756)

Objects do not own weak references to them directly through the __weakref__ list so these
do not need to be traversed by the GC.

(cherry picked from commit 0c2b509)
…dows (pythonGH-18724)

(cherry picked from commit ce3a498)

Co-authored-by: Steve Dower <steve.dower@python.org>
) (pythonGH-18761)

(cherry picked from commit 2d2f855)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
…H-18754)

Automerge-Triggered-By: @pablogsal
(cherry picked from commit 6df421f)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
…ython#18746) (python#18752)

- Threads created by PyGILState_Ensure() could have a duplicate tstate->id.

(cherry picked from commit b3b9ade)
@arun-mani-j
Copy link
Contributor Author

@remilapeyre Sorry I was involved in some fuss and forgot the issue 🤦.
I changed the PR to act on master. :)

@arun-mani-j
Copy link
Contributor Author

I think I messed up my fork and it is lagging behind base. I followed some SO answers but still my fork is not up to date. May be, you can close this issue and make the changes yourself ? :(

@terryjreedy
Copy link
Member

This needs to start over with a branch off of an up-to-date local master that has been pushed to the fork. A local master can be brought up to date with pull or fetch+merge (from upstream == python/cpython. A local master and for that are ahead of upstream are hard to back up and it may be better to delete and regenerate. I cannot tell from what I see here.

@J-Arun-Mani J-Arun-Mani mannequin mentioned this pull request Jun 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting review docs Documentation in the Doc dir
Projects
None yet
Development

Successfully merging this pull request may close these issues.