FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
cpython/Lib/string/__init__.py at 3.14 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Lib
/
string
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
332 lines (274 loc) · 12.5 KB
Breadcrumbs
cpython
/
Lib
/
string
/
__init__.py
Copy path
File metadata and controls
332 lines (274 loc) · 12.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
"""A collection of string constants.
Public module variables:
whitespace -- a string containing all ASCII whitespace
ascii_lowercase -- a string containing all ASCII lowercase letters
ascii_uppercase -- a string containing all ASCII uppercase letters
ascii_letters -- a string containing all ASCII letters
digits -- a string containing all ASCII decimal digits
hexdigits -- a string containing all ASCII hexadecimal digits
octdigits -- a string containing all ASCII octal digits
punctuation -- a string containing all ASCII punctuation characters
printable -- a string containing all ASCII characters considered printable
"""
__all__
=
[
"ascii_letters"
,
"ascii_lowercase"
,
"ascii_uppercase"
,
"capwords"
,
"digits"
,
"hexdigits"
,
"octdigits"
,
"printable"
,
"punctuation"
,
"whitespace"
,
"Formatter"
,
"Template"
]
import
_string
# Some strings for ctype-style character classification
whitespace
=
'
\t
\n
\r
\v
\f
'
ascii_lowercase
=
'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_letters
=
ascii_lowercase
+
ascii_uppercase
digits
=
'0123456789'
hexdigits
=
digits
+
'abcdef'
+
'ABCDEF'
octdigits
=
'01234567'
punctuation
=
r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
printable
=
digits
+
ascii_letters
+
punctuation
+
whitespace
# Functions which aren't available as string methods.
# Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
def
capwords
(
s
,
sep
=
None
):
"""capwords(s [,sep]) -> string
Split the argument into words using split, capitalize each
word using capitalize, and join the capitalized words using
join. If the optional second argument sep is absent or None,
runs of whitespace characters are replaced by a single space
and leading and trailing whitespace are removed, otherwise
sep is used to split and join the words.
"""
return
(
sep
or
' '
).
join
(
map
(
str
.
capitalize
,
s
.
split
(
sep
)))
####################################################################
_sentinel_dict
=
{}
class
_TemplatePattern
:
# This descriptor is overwritten in ``Template._compile_pattern()``.
def
__get__
(
self
,
instance
,
cls
=
None
):
if
cls
is
None
:
return
self
return
cls
.
_compile_pattern
()
_TemplatePattern
=
_TemplatePattern
()
class
Template
:
"""A string class for supporting $-substitutions."""
delimiter
=
'$'
# r'[a-z]' matches to non-ASCII letters when used with IGNORECASE, but
# without the ASCII flag. We can't add re.ASCII to flags because of
# backward compatibility. So we use the ?a local flag and [a-z] pattern.
# See https://bugs.python.org/issue31672
idpattern
=
r'(?a:[_a-z][_a-z0-9]*)'
braceidpattern
=
None
flags
=
None
# default: re.IGNORECASE
pattern
=
_TemplatePattern
# use a descriptor to compile the pattern
def
__init_subclass__
(
cls
):
super
().
__init_subclass__
()
cls
.
_compile_pattern
()
@
classmethod
def
_compile_pattern
(
cls
):
import
re
# deferred import, for performance
# `pattern` may be the `_TemplatePattern` sentinel (not yet compiled), an
# already-compiled regular expression object (as documented), or a string
# regular expression. An already-compiled object is returned as-is; the
# other two are compiled and cached back on the class.
pattern
=
cls
.
__dict__
.
get
(
'pattern'
,
_TemplatePattern
)
if
isinstance
(
pattern
,
re
.
Pattern
):
# re.compile() rejects flags on an already-compiled pattern.
return
pattern
if
pattern
is
_TemplatePattern
:
delim
=
re
.
escape
(
cls
.
delimiter
)
id
=
cls
.
idpattern
bid
=
cls
.
braceidpattern
or
cls
.
idpattern
pattern
=
fr"""
{
delim
}
(?:
(?P<escaped>
{
delim
}
) | # Escape sequence of two delimiters
(?P<named>
{
id
}
) | # delimiter and a Python identifier
{{(?P<braced>
{
bid
}
)}} | # delimiter and a braced identifier
(?P<invalid>) # Other ill-formed delimiter exprs
)
"""
if
cls
.
flags
is
None
:
cls
.
flags
=
re
.
IGNORECASE
pat
=
cls
.
pattern
=
re
.
compile
(
pattern
,
cls
.
flags
|
re
.
VERBOSE
)
return
pat
def
__init__
(
self
,
template
):
self
.
template
=
template
# Search for $$, $identifier, ${identifier}, and any bare $'s
def
_invalid
(
self
,
mo
):
i
=
mo
.
start
(
'invalid'
)
lines
=
self
.
template
[:
i
].
splitlines
(
keepends
=
True
)
if
not
lines
:
colno
=
1
lineno
=
1
else
:
colno
=
i
-
len
(
''
.
join
(
lines
[:
-
1
]))
lineno
=
len
(
lines
)
raise
ValueError
(
'Invalid placeholder in string: line %d, col %d'
%
(
lineno
,
colno
))
def
substitute
(
self
,
mapping
=
_sentinel_dict
,
/
,
**
kws
):
if
mapping
is
_sentinel_dict
:
mapping
=
kws
elif
kws
:
from
collections
import
ChainMap
mapping
=
ChainMap
(
kws
,
mapping
)
# Helper function for .sub()
def
convert
(
mo
):
# Check the most common path first.
named
=
mo
.
group
(
'named'
)
or
mo
.
group
(
'braced'
)
if
named
is
not
None
:
return
str
(
mapping
[
named
])
if
mo
.
group
(
'escaped'
)
is
not
None
:
return
self
.
delimiter
if
mo
.
group
(
'invalid'
)
is
not
None
:
self
.
_invalid
(
mo
)
raise
ValueError
(
'Unrecognized named group in pattern'
,
self
.
pattern
)
return
self
.
pattern
.
sub
(
convert
,
self
.
template
)
def
safe_substitute
(
self
,
mapping
=
_sentinel_dict
,
/
,
**
kws
):
if
mapping
is
_sentinel_dict
:
mapping
=
kws
elif
kws
:
from
collections
import
ChainMap
mapping
=
ChainMap
(
kws
,
mapping
)
# Helper function for .sub()
def
convert
(
mo
):
named
=
mo
.
group
(
'named'
)
or
mo
.
group
(
'braced'
)
if
named
is
not
None
:
try
:
return
str
(
mapping
[
named
])
except
KeyError
:
return
mo
.
group
()
if
mo
.
group
(
'escaped'
)
is
not
None
:
return
self
.
delimiter
if
mo
.
group
(
'invalid'
)
is
not
None
:
return
mo
.
group
()
raise
ValueError
(
'Unrecognized named group in pattern'
,
self
.
pattern
)
return
self
.
pattern
.
sub
(
convert
,
self
.
template
)
def
is_valid
(
self
):
for
mo
in
self
.
pattern
.
finditer
(
self
.
template
):
if
mo
.
group
(
'invalid'
)
is
not
None
:
return
False
if
(
mo
.
group
(
'named'
)
is
None
and
mo
.
group
(
'braced'
)
is
None
and
mo
.
group
(
'escaped'
)
is
None
):
# If all the groups are None, there must be
# another group we're not expecting
raise
ValueError
(
'Unrecognized named group in pattern'
,
self
.
pattern
)
return
True
def
get_identifiers
(
self
):
ids
=
[]
for
mo
in
self
.
pattern
.
finditer
(
self
.
template
):
named
=
mo
.
group
(
'named'
)
or
mo
.
group
(
'braced'
)
if
named
is
not
None
and
named
not
in
ids
:
# add a named group only the first time it appears
ids
.
append
(
named
)
elif
(
named
is
None
and
mo
.
group
(
'invalid'
)
is
None
and
mo
.
group
(
'escaped'
)
is
None
):
# If all the groups are None, there must be
# another group we're not expecting
raise
ValueError
(
'Unrecognized named group in pattern'
,
self
.
pattern
)
return
ids
########################################################################
# the Formatter class
# see PEP 3101 for details and purpose of this class
# The hard parts are reused from the C implementation. They're exposed as "_"
# prefixed methods of str.
# The overall parser is implemented in _string.formatter_parser.
# The field name parser is implemented in _string.formatter_field_name_split
class
Formatter
:
def
format
(
self
,
format_string
,
/
,
*
args
,
**
kwargs
):
return
self
.
vformat
(
format_string
,
args
,
kwargs
)
def
vformat
(
self
,
format_string
,
args
,
kwargs
):
used_args
=
set
()
result
,
_
=
self
.
_vformat
(
format_string
,
args
,
kwargs
,
used_args
,
2
)
self
.
check_unused_args
(
used_args
,
args
,
kwargs
)
return
result
def
_vformat
(
self
,
format_string
,
args
,
kwargs
,
used_args
,
recursion_depth
,
auto_arg_index
=
0
):
if
recursion_depth
<
0
:
raise
ValueError
(
'Max string recursion exceeded'
)
result
=
[]
for
literal_text
,
field_name
,
format_spec
,
conversion
in
\
self
.
parse
(
format_string
):
# output the literal text
if
literal_text
:
result
.
append
(
literal_text
)
# if there's a field, output it
if
field_name
is
not
None
:
# this is some markup, find the object and do
# the formatting
# handle arg indexing when empty field first parts are given.
field_first
,
_
=
_string
.
formatter_field_name_split
(
field_name
)
if
field_first
==
''
:
if
auto_arg_index
is
False
:
raise
ValueError
(
'cannot switch from manual field '
'specification to automatic field '
'numbering'
)
field_name
=
str
(
auto_arg_index
)
+
field_name
auto_arg_index
+=
1
elif
isinstance
(
field_first
,
int
):
if
auto_arg_index
:
raise
ValueError
(
'cannot switch from automatic field '
'numbering to manual field '
'specification'
)
# disable auto arg incrementing, if it gets
# used later on, then an exception will be raised
auto_arg_index
=
False
# given the field_name, find the object it references
# and the argument it came from
obj
,
arg_used
=
self
.
get_field
(
field_name
,
args
,
kwargs
)
used_args
.
add
(
arg_used
)
# do any conversion on the resulting object
obj
=
self
.
convert_field
(
obj
,
conversion
)
# expand the format spec, if needed
format_spec
,
auto_arg_index
=
self
.
_vformat
(
format_spec
,
args
,
kwargs
,
used_args
,
recursion_depth
-
1
,
auto_arg_index
=
auto_arg_index
)
# format the object and append to the result
result
.
append
(
self
.
format_field
(
obj
,
format_spec
))
return
''
.
join
(
result
),
auto_arg_index
def
get_value
(
self
,
key
,
args
,
kwargs
):
if
isinstance
(
key
,
int
):
return
args
[
key
]
else
:
return
kwargs
[
key
]
def
check_unused_args
(
self
,
used_args
,
args
,
kwargs
):
pass
def
format_field
(
self
,
value
,
format_spec
):
return
format
(
value
,
format_spec
)
def
convert_field
(
self
,
value
,
conversion
):
# do any conversion on the resulting object
if
conversion
is
None
:
return
value
elif
conversion
==
's'
:
return
str
(
value
)
elif
conversion
==
'r'
:
return
repr
(
value
)
elif
conversion
==
'a'
:
return
ascii
(
value
)
raise
ValueError
(
"Unknown conversion specifier {0!s}"
.
format
(
conversion
))
# returns an iterable that contains tuples of the form:
# (literal_text, field_name, format_spec, conversion)
# literal_text can be zero length
# field_name can be None, in which case there's no
# object to format and output
# if field_name is not None, it is looked up, formatted
# with format_spec and conversion and then used
def
parse
(
self
,
format_string
):
return
_string
.
formatter_parser
(
format_string
)
# given a field_name, find the object it references.
# field_name: the field being looked up, e.g. "0.name"
# or "lookup[3]"
# used_args: a set of which args have been used
# args, kwargs: as passed in to vformat
def
get_field
(
self
,
field_name
,
args
,
kwargs
):
first
,
rest
=
_string
.
formatter_field_name_split
(
field_name
)
obj
=
self
.
get_value
(
first
,
args
,
kwargs
)
# loop through the rest of the field_name, doing
# getattr or getitem as needed
for
is_attr
,
i
in
rest
:
if
is_attr
:
obj
=
getattr
(
obj
,
i
)
else
:
obj
=
obj
[
i
]
return
obj
,
first
Back
|
FazBrowse Home
|
New Git URL