Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
bpo-32397: new option for TextWrapper to allow stable wrapping#27587
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
akulakov wants to merge9 commits intopython:mainChoose a base branch fromakulakov:32397-Add-textwrap-arg-for-stable-wrapping
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
+74 −7
Open
Changes fromall commits
Commits
Show all changes
9 commits Select commitHold shift + click to select a range
9d4b63c
add fold_space_newline arg to TextWrapper; docstring for it; add unit…
akulakov2e530bf
fix idle test
akulakov9c45514
added docs; comment description and news entry
akulakovb1782d5
expand and fix the note about stable wrapping
akulakovf92a9e7
Update Lib/idlelib/idle_test/test_calltip.py
akulakovd6a0481
add WhatsNew entry
akulakovf7b6f33
move comment in test outside of test string
akulakovb30716f
Merge and move what's new note from 3.11 to 3.12
akulakov1626929
fix merge
akulakovFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
19 changes: 16 additions & 3 deletionsDoc/library/textwrap.rst
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
4 changes: 3 additions & 1 deletionDoc/whatsnew/3.12.rst
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -96,12 +96,13 @@ class SB: __call__ = None | ||
non-overlapping occurrences o...''') | ||
def test_signature_wrap(self): | ||
# Test revised for 3.11, bpo-32397. | ||
if textwrap.TextWrapper.__doc__ is not None: | ||
self.assertEqual(get_spec(textwrap.TextWrapper), '''\ | ||
(width=70, initial_indent='', subsequent_indent='', expand_tabs=True, | ||
replace_whitespace=True, fix_sentence_endings=False, break_long_words=True, | ||
drop_whitespace=True, break_on_hyphens=True, tabsize=8,fold_space_newline=False, | ||
*, max_lines=None,placeholder=' [...]') | ||
akulakov marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
Object for wrapping/filling text. The public interface consists of | ||
the wrap() and fill() methods; the other methods are just there for | ||
subclasses to override in order to tweak the default behaviour. | ||
33 changes: 33 additions & 0 deletionsLib/test/test_textwrap.py
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
17 changes: 16 additions & 1 deletionLib/textwrap.py
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
3 changes: 3 additions & 0 deletionsMisc/NEWS.d/next/Library/2021-08-22-22-46-11.bpo-32397.5wU1QU.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
New option *fold_space_newline* (default: ``False``) was added to | ||
:class:`~textwrap.TextWrapper`. When set to true, newlines may be folded | ||
into adjacent spaces; see class documentation for details. |
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.