-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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-30709: bad getter from Descriptor#Properties example #2288
Conversation
Based on suggestion from Fumihiro Bessho.
Based on patch by Patrila.
Patch by Dhushyanth Ramasamy.
WeakValueDictionary when collecting from another thread.
…gative integers.
….textpad.Textbox. Based on patch by Tycho Andersen.
…ject and modes "w" now are relative to the start of the file.
…tch by Masayuki Yamamoto
…tic seeds for random.
…ode. Patch by jan matejek and Xiang Zhang.
In urllib, suffixes in no_proxy environment variable with leading dots could match related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch.
Issue python#29188: Support glibc 2.24 on Linux: don't use getentropy() function but read from /dev/urandom to get random bytes, for example in os.urandom(). On Linux, getentropy() is implemented which getrandom() is blocking mode, whereas os.urandom() should not block.
…thonGH-2137) (cherry picked from commit dc980df)
PyNumber_Int() creates a new reference: need to decrement result reference counter.
Add a test to check the current MAGIC_NUMBER against the expected number for the release if the current release is at candidate or final level. On test failure, describe to the developer the procedure for changing the magic number. This ensures that pre-merge CI will automatically pick up on magic number changes in maintenance releases (and explain why those are problematic), rather than relying on all core developers to be aware of the implications of such changes.
…honGH-2159) (python#2168) * bpo-24484: Avoid race condition in multiprocessing cleanup The finalizer registry can be mutated while inspected by multiprocessing at process exit. * Use test.support.start_threads() * Add Misc/NEWS. (cherry picked from commit 1eb6c00)
…honGH-2173) (pythonGH-2196) (cherry picked from commit 184bd82)
…n#2202) * 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)
regrtest now warms up caches: create explicitly all internal singletons which are created on demand to prevent false positives when checking for reference leaks.
…rtest (python#2249) [2.7] bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest
- The purpose of `obj` in the example is implicit - As an argument the `obj` will cause errors when using `Cell('b10').value` because it expects more arguments, but 1 given
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately we couldn't find an account corresponding to your GitHub username on bugs.python.org (b.p.o) to verify you have signed the CLA (this might be simply due to a missing "GitHub Name" entry in your b.p.o account settings). This is necessary for legal reasons before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
Oops sorry for some mess here I'm just kinda new in this amazing community 🙏 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR. I noticed you made this against the 2.7 branch. Can you make the change against the master
branch first? Once the PR on master
has been merged, it can be backported to the maintenance branches.
@Mariatta Thanks for your reply! I just updated the base branch! |
Simply changing the base branch on GitHub won't work :( I think you'll need to rebase against the master branch, and then do a force push. Perhaps it will be easier for you to checkout a branch that is off the master branch, eg by doing |
@Mariatta I'm pretty sorry for my misconception, and perhaps it is heavily due to my direct modification on that file via GitHub webpage, which creates a new I'm closing this and will new a PR with a link to this conversation. And I will clone my forked repo (which is much outdated seemingly) and use the following commands to make my changes against $ # New branch `foo'
$ git fetch origin # updates origin/master
$ # make my changes on `foo'
$ git rebase origin/master
$ git push origin master -f
$ # New a pull request on python/cpython Hope it works out... |
obj
in the example is implicitobj
will cause errors when usingCell('b10').value
because it expects more arguments, but 1 given