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
12d6b5d1
Kaydet (Commit)
12d6b5d1
authored
May 27, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
May 27, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30398: Add a docstring for re.error. (#1647)
Also document that some attributes may be None.
üst
5becf38a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
re.rst
Doc/library/re.rst
+3
-3
sre_constants.py
Lib/sre_constants.py
+11
-0
No files found.
Doc/library/re.rst
Dosyayı görüntüle @
12d6b5d1
...
...
@@ -839,15 +839,15 @@ form.
.. attribute:: pos
The index
of *pattern* where compilation failed
.
The index
in *pattern* where compilation failed (may be ``None``)
.
.. attribute:: lineno
The line corresponding to *pos*.
The line corresponding to *pos*
(may be ``None``)
.
.. attribute:: colno
The column corresponding to *pos*.
The column corresponding to *pos*
(may be ``None``)
.
.. versionchanged:: 3.5
Added additional attributes.
...
...
Lib/sre_constants.py
Dosyayı görüntüle @
12d6b5d1
...
...
@@ -21,6 +21,17 @@ from _sre import MAXREPEAT, MAXGROUPS
# should this really be here?
class
error
(
Exception
):
"""Exception raised for invalid regular expressions.
Attributes:
msg: The unformatted error message
pattern: The regular expression pattern
pos: The index in the pattern where compilation failed (may be None)
lineno: The line corresponding to pos (may be None)
colno: The column corresponding to pos (may be None)
"""
def
__init__
(
self
,
msg
,
pattern
=
None
,
pos
=
None
):
self
.
msg
=
msg
self
.
pattern
=
pattern
...
...
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