-  
 -   Notifications  
You must be signed in to change notification settings  - Fork 33.3k
 
3.7 bpo-32852: Fix trace changing sys.argv to tuple GH-5692 #5703
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
   Closed  
  Conversation
   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   
     …addr and to_addrs (python#5451) Do not pass the name field in the 'from' address in the SMTP envelope.
tarfile and zipfile now sort directory listing to generate tar and zip archives in a more reproducible way. See also https://reproducible-builds.org/docs/stable-inputs/ on that topic.
…5325) When using customized decode error handlers, it is possible for builtin decoders to write out-of-bounds and then crash.
Mention only ImportError caused by importing sitecustomize.py/usercustomize.py themselves will be silently ignored.
…ythonGH-5464) The f-string example for using datetime format specifier does not match the given output. Changed the format from %b to %B so it matches the output of "January".
In the tutorial about the Generator expression, there is an example with a dict comprehension and not with a generator expression, just removed the code.
…selection. (pythonGH-3651) It was deprecated in 3.6.
* bpo-32711: Fix warnings for Python/ast_unparse.c
Clarify that the level argument is used to determine whether to perform absolute or relative imports: 0 is absolute, while a positive number is the number of parent directories to search relative to the current module.
…onGH-5495 This reverts commit 72a0d21. The reverted commit had a few issues so it was unanimously decided to undo it. See the bpo issue for details.
* Make sure ``__spec__.loader`` matches ``__loader__`` for namespace packages. * Make sure ``__spec__.origin` matches ``__file__`` for namespace packages. https://bugs.python.org/issue32303 https://bugs.python.org/issue32305
…ythonGH-5265) Modify RE examples in documentation to use raw strings to prevent DeprecationWarning. Add text to REGEX HOWTO to highlight the deprecation. Approved by Serhiy Storchaka.
…H-5474) Previously the module name was used, which broke relative imports when pdb was run against a plain module or submodule.
Fix typos found by codespell in docs, docstrings, and comments.
…i-language doc (pythonGH-5482) Changed the definition of width and precision from "integer" to "digit+" in format mini-language doc.
This is not the ideal solution; this means that a test module is now always included in the main python3x.dll. However, we're already including xxsubtype, so why not?
…nGH-5622) Describe *text* as an alias for *universal_newlines* in more places that people are likely to be referred to.
The PrintNameOffset field of the reparse data buffer was treated as a number of characters instead of bytes.
…t. (pythonGH-5639) GUI test test_file_buttons() only looks at initial ascii-only lines, but failed on systems where open() defaults to 'ascii' because readline() internally reads and decodes far enough ahead to encounter a non-ascii character in CREDITS.txt.
…ythonGH-5646) Using the system and place-dependent default encoding for open() is a bad idea for IDLE's system and location-independent files.
This note incorrectly stated that "Base64 has an expansion factor of 6 to 4" (it is actually 4 to 3). It was decided to remove the note.
Remove pkg_add -r python from FreeBSD installation section. Moved to OpenBSD.
A closing parentheses was missing. Signed-off-by: Ngie Cooper <yaneurabeya@gmail.com>
bpo-32852
|   Forgot to pick the proper branch initially, looks like I just messed it all up now.  |  
 Sign up for free to 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.    
 
https://bugs.python.org/issue32852