Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
056cb93e
Kaydet (Commit)
056cb93e
authored
Tem 29, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#6630: allow customizing flags for compiling string.Template.idpattern.
üst
1cec3e36
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
string.rst
Doc/library/string.rst
+8
-0
string.py
Lib/string.py
+2
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/string.rst
Dosyayı görüntüle @
056cb93e
...
...
@@ -710,6 +710,14 @@ to parse template strings. To do this, you can override these class attributes:
appropriate). The default value is the regular expression
``[_a-z][_a-z0-9]*``.
* *flags* -- The regular expression flags that will be applied when compiling
the regular expression used for recognizing substitutions. The default value
is ``re.IGNORECASE``. Note that ``re.VERBOSE`` will always be added to the
flags, so custom *idpattern*\ s must follow conventions for verbose regular
expressions.
.. versionadded:: 3.2
Alternatively, you can provide the entire regular expression pattern by
overriding the class attribute *pattern*. If you do this, the value must be a
regular expression object with four named capturing groups. The capturing
...
...
Lib/string.py
Dosyayı görüntüle @
056cb93e
...
...
@@ -81,7 +81,7 @@ class _TemplateMetaclass(type):
'delim'
:
_re
.
escape
(
cls
.
delimiter
),
'id'
:
cls
.
idpattern
,
}
cls
.
pattern
=
_re
.
compile
(
pattern
,
_re
.
IGNORECASE
|
_re
.
VERBOSE
)
cls
.
pattern
=
_re
.
compile
(
pattern
,
cls
.
flags
|
_re
.
VERBOSE
)
class
Template
(
metaclass
=
_TemplateMetaclass
):
...
...
@@ -89,6 +89,7 @@ class Template(metaclass=_TemplateMetaclass):
delimiter
=
'$'
idpattern
=
r'[_a-z][_a-z0-9]*'
flags
=
_re
.
IGNORECASE
def
__init__
(
self
,
template
):
self
.
template
=
template
...
...
Misc/NEWS
Dosyayı görüntüle @
056cb93e
...
...
@@ -475,6 +475,9 @@ C-API
Library
-------
- Issue #6630: Allow customizing regex flags when subclassing the
string.Template class.
- Issue #9411: Allow specifying an encoding for config files in the
configparser module.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment