Uh oh!
There was an error while loading. Please reload this page.
bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError - #31548
Merged
Conversation
Uh oh!
There was an error while loading. Please reload this page.
iritkatriel
approved these changes
Mar 8, 2022
raghavthind2005
approved these changes
Mar 14, 2022
miss-islington
commented
Mar 14, 2022
Contributor
Thanks @slateny for the PR, and @iritkatriel for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
bedevere-bot
commented
Mar 14, 2022
GH-31877 is a backport of this pull request to the 3.10 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Mar 14, 2022
…ythonGH-31548) (cherry picked from commit 879fbd9) Co-authored-by: slateny <46876382+slateny@users.noreply.github.com>
bedevere-bot
commented
Mar 14, 2022
GH-31878 is a backport of this pull request to the 3.9 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Mar 14, 2022
…ythonGH-31548) (cherry picked from commit 879fbd9) Co-authored-by: slateny <46876382+slateny@users.noreply.github.com>
miss-islington added a commit
that referenced
this pull request
Mar 14, 2022
miss-islington added a commit
that referenced
this pull request
Mar 14, 2022
carljm pushed a commit
to carljm/cpython
that referenced
this pull request
Mar 14, 2022
* main: (94 commits) Revert "bpo-46986: Upgrade bundled setuptools to 60.9.3 (pythonGH-31820)" (pythonGH-31879) bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError (pythonGH-31548) git ignore Lib/site-packages (pythonGH-31862) bpo-31415: importtime was made by Inada Naoki (pythonGH-31875) bpo-46920: Remove code that has explainers why it was disabled (pythonGH-31813) bpo-46920: Remove disabled debug code added decades ago and likely unnecessary (pythonGH-31812) bpo-46920: Remove code that has no explainer why it was disabled (pythonGH-31814) bpo-46906: Mention native endian in PyFloat_Pack8() doc (pythonGH-31866) bpo-40280: select: Use NULL for empty fdset (pythonGH-31865) CI: Fix patchcheck (pythonGH-31708) bpo-46987: Remove _PySys_GetObjectId / _PySys_GetObjectId (pythonGH-31835) bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (pythonGH-31837) bpo-39829: Fix `__len__()` is called twice in list() constructor (pythonGH-31816) bpo-47003: Cleanup _overlapped module (pythonGH-31848) bpo-47004: Sync with importlib_metadata 4.11.3. (python#31854) bpo-46986: Upgrade bundled setuptools to 60.9.3 (pythonGH-31820) bpo-46985: Upgrade bundled pip to 22.0.4 (pythonGH-31819) bpo-46805: Add low level UDP socket functions to asyncio (pythonGH-31455) bpo-46995: Deprecate missing asyncio.Task.set_name() for third-party task implementations (pythonGH-31838) bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (pythonGH-24525) ...
hello-adam pushed a commit
to hello-adam/cpython
that referenced
this pull request
Jun 2, 2022
…Error (pythonGH-31548) (pythonGH-31878) (cherry picked from commit 879fbd9) Co-authored-by: slateny <46876382+slateny@users.noreply.github.com> Automerge-Triggered-By: GH:iritkatriel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Used the 'parent directory' wording to mirror mkdir's
-pflag in bash, thoughos.makedirs()says...intermediate-level directories..., so another option's to sayHowever, both 'intermediate' and 'parent' are used throughout the document so not too certain which one's preferred here.
https://bugs.python.org/issue30677