Kaydet (Commit) b420428c authored tarafından Andre Delfino's avatar Andre Delfino Kaydeden (comit) Serhiy Storchaka

Document actual string.punctuation value. (GH-12270)

üst 53c2935d
...@@ -56,8 +56,7 @@ The constants defined in this module are: ...@@ -56,8 +56,7 @@ The constants defined in this module are:
.. data:: punctuation .. data:: punctuation
String of ASCII characters which are considered punctuation characters String of ASCII characters which are considered punctuation characters
in the ``C`` locale. in the ``C`` locale: ``!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~``.
.. data:: printable .. data:: printable
......
...@@ -215,6 +215,7 @@ library/stdtypes,,::,>>> hash(v[::-2]) == hash(b'abcefg'[::-2]) ...@@ -215,6 +215,7 @@ library/stdtypes,,::,>>> hash(v[::-2]) == hash(b'abcefg'[::-2])
library/stdtypes,,:len,s[len(s):len(s)] library/stdtypes,,:len,s[len(s):len(s)]
library/stdtypes,,::,>>> y = m[::2] library/stdtypes,,::,>>> y = m[::2]
library/stdtypes,,::,>>> z = y[::-2] library/stdtypes,,::,>>> z = y[::-2]
library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~"
library/subprocess,,`,"output=`dmesg | grep hda`" library/subprocess,,`,"output=`dmesg | grep hda`"
library/subprocess,,`,"output=`mycmd myarg`" library/subprocess,,`,"output=`mycmd myarg`"
library/tarfile,,:bz2, library/tarfile,,:bz2,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment