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
632a77e6
Kaydet (Commit)
632a77e6
authored
Mar 25, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22364: Improved some re error messages using regex for hints.
üst
7c316a18
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
7 deletions
+9
-7
re.py
Lib/re.py
+1
-1
sre_compile.py
Lib/sre_compile.py
+3
-3
sre_parse.py
Lib/sre_parse.py
+0
-0
test_re.py
Lib/test/test_re.py
+0
-0
NEWS
Misc/NEWS
+2
-0
_sre.c
Modules/_sre.c
+3
-3
No files found.
Lib/re.py
Dosyayı görüntüle @
632a77e6
...
...
@@ -286,7 +286,7 @@ def _compile(pattern, flags):
if
isinstance
(
pattern
,
_pattern_type
):
if
flags
:
raise
ValueError
(
"
C
annot process flags argument with a compiled pattern"
)
"
c
annot process flags argument with a compiled pattern"
)
return
pattern
if
not
sre_compile
.
isstring
(
pattern
):
raise
TypeError
(
"first argument must be string or compiled pattern"
)
...
...
Lib/sre_compile.py
Dosyayı görüntüle @
632a77e6
...
...
@@ -113,7 +113,7 @@ def _compile(code, pattern, flags):
emit
(
ANY
)
elif
op
in
REPEATING_CODES
:
if
flags
&
SRE_FLAG_TEMPLATE
:
raise
error
(
"internal: unsupported template operator
"
)
raise
error
(
"internal: unsupported template operator
%
r"
%
(
op
,)
)
elif
_simple
(
av
)
and
op
is
not
REPEAT
:
if
op
is
MAX_REPEAT
:
emit
(
REPEAT_ONE
)
...
...
@@ -216,7 +216,7 @@ def _compile(code, pattern, flags):
else
:
code
[
skipyes
]
=
_len
(
code
)
-
skipyes
+
1
else
:
raise
ValueError
(
"unsupported operand type"
,
op
)
raise
error
(
"internal: unsupported operand type
%
r"
%
(
op
,)
)
def
_compile_charset
(
charset
,
flags
,
code
,
fixup
=
None
,
fixes
=
None
):
# compile charset subprogram
...
...
@@ -242,7 +242,7 @@ def _compile_charset(charset, flags, code, fixup=None, fixes=None):
else
:
emit
(
av
)
else
:
raise
error
(
"internal: unsupported set operator
"
)
raise
error
(
"internal: unsupported set operator
%
r"
%
(
op
,)
)
emit
(
FAILURE
)
def
_optimize_charset
(
charset
,
fixup
,
fixes
):
...
...
Lib/sre_parse.py
Dosyayı görüntüle @
632a77e6
This diff is collapsed.
Click to expand it.
Lib/test/test_re.py
Dosyayı görüntüle @
632a77e6
This diff is collapsed.
Click to expand it.
Misc/NEWS
Dosyayı görüntüle @
632a77e6
...
...
@@ -30,6 +30,8 @@ Core and Builtins
Library
-------
-
Issue
#
22364
:
Improved
some
re
error
messages
using
regex
for
hints
.
-
Issue
#
23742
:
ntpath
.
expandvars
()
no
longer
loses
unbalanced
single
quotes
.
-
Issue
#
21717
:
The
zipfile
.
ZipFile
.
open
function
now
supports
'x'
(
exclusive
...
...
Modules/_sre.c
Dosyayı görüntüle @
632a77e6
...
...
@@ -315,7 +315,7 @@ getstring(PyObject* string, Py_ssize_t* p_length,
/* get pointer to byte string buffer */
if
(
PyObject_GetBuffer
(
string
,
view
,
PyBUF_SIMPLE
)
!=
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"expected string or b
uffer
"
);
PyErr_SetString
(
PyExc_TypeError
,
"expected string or b
ytes-like object
"
);
return
NULL
;
}
...
...
@@ -359,12 +359,12 @@ state_init(SRE_STATE* state, PatternObject* pattern, PyObject* string,
if
(
isbytes
&&
pattern
->
isbytes
==
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"can
'
t use a string pattern on a bytes-like object"
);
"can
no
t use a string pattern on a bytes-like object"
);
goto
err
;
}
if
(
!
isbytes
&&
pattern
->
isbytes
>
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"can
'
t use a bytes pattern on a string-like object"
);
"can
no
t use a bytes pattern on a string-like object"
);
goto
err
;
}
...
...
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