Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-106318: Add string method examples#119445
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
base:main
Are you sure you want to change the base?
Conversation
Modules/_xxtestfuzz/fuzz_elementtree_parsewhole_corpus/expat224_utf8_bug.xml OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Fix indentation
>>> 'Python'.rjust(10, '.') | ||
'....Python' | ||
The original string is returned if *width* is less than or equal to ``len(s)``. |
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.
I think this might fix theSphinx error:
The original string is returned if *width* is less than or equal to ``len(s)``. | |
The original string is returned if *width* is less than or equal to ``len(s)``. |
For some reason, reST is usually indented in multiples of 3 spaces.
I'll update this with the suggestions fromhttps://www.youtube.com/live/-0SXSTkJsfg?si=yRQG9Pm0ochACy_x&t=3883 |
From office hours athttps://www.youtube.com/live/-0SXSTkJsfg?si=QKhDzyWPVvWRLcDO&t=4267Co-authored-by: Lisa Crispin <lisa.crispin@gmail.com>
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
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.
I notice some possible errors,@blaisep
Yes, I am marking this draft and going over it much more carefully. BTW,@adorilson , I will be in UTC-4 for the rest of the week and happy to pair up on this if you like. I'll add you to my fork. |
Fix doctest formatting errors
@@ -1863,7 +1857,7 @@ expression support in the :mod:`re` module). | |||
... def __missing__(self, key): | |||
... return key | |||
... | |||
>>> '{name} was born in {country}'.format_map(Default(name='Guido')) | |||
>>> '{name} was born in {country}'.format_map(Default(name='Guido', country='Netherlands')) | |||
'Guido was born in country' |
adorilsonJul 16, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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.
This is supposed to be:
'Guido was born in Netherlands'
However, I think the previous example is more valuable. It shows the two Default class behaviour.
Uh oh!
There was an error while loading.Please reload this page.
This PR reformats the examples created by@adorilson in#105670
I followed the discussion in a related PR#111743 , and then discussed it with@encukou and@CAM-Gerlach .
We decided that the fastest way to get the content into the docs was to edit the
stdtypes.rst
to include various suggestions and to have meupdate the related PRSo I pulled the branch, resolved merge conflicts, edited the file and created this PR.
Mentioning others who might be interested:
@hauntsaninja ,@CAM-Gerlach ,@encukou
📚 Documentation preview 📚:https://cpython-previews--119445.org.readthedocs.build/en/119445/library/stdtypes.html