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
be80fc9a
Kaydet (Commit)
be80fc9a
authored
Eki 24, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19327: Fixed the working of regular expressions with too big charset.
üst
b82a3dc2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
sre_compile.py
Lib/sre_compile.py
+1
-1
test_re.py
Lib/test/test_re.py
+3
-0
NEWS
Misc/NEWS
+2
-0
_sre.c
Modules/_sre.c
+2
-2
No files found.
Lib/sre_compile.py
Dosyayı görüntüle @
be80fc9a
...
...
@@ -345,7 +345,7 @@ def _optimize_unicode(charset, fixup):
else
:
code
=
'I'
# Convert block indices to byte array of 256 bytes
mapping
=
array
.
array
(
'
b
'
,
mapping
)
.
tobytes
()
mapping
=
array
.
array
(
'
B
'
,
mapping
)
.
tobytes
()
# Convert byte array to word array
mapping
=
array
.
array
(
code
,
mapping
)
assert
mapping
.
itemsize
==
_sre
.
CODESIZE
...
...
Lib/test/test_re.py
Dosyayı görüntüle @
be80fc9a
...
...
@@ -428,6 +428,9 @@ class ReTests(unittest.TestCase):
"
\u2222
"
)
.
group
(
1
),
"
\u2222
"
)
self
.
assertEqual
(
re
.
match
(
"([
\u2222\u2223
])"
,
"
\u2222
"
,
re
.
UNICODE
)
.
group
(
1
),
"
\u2222
"
)
r
=
'[
%
s]'
%
''
.
join
(
map
(
chr
,
range
(
256
,
2
**
16
,
255
)))
self
.
assertEqual
(
re
.
match
(
r
,
"
\uff01
"
,
re
.
UNICODE
)
.
group
(),
"
\uff01
"
)
def
test_big_codesize
(
self
):
# Issue #1160
...
...
Misc/NEWS
Dosyayı görüntüle @
be80fc9a
...
...
@@ -81,6 +81,8 @@ Core and Builtins
Library
-------
-
Issue
#
19327
:
Fixed
the
working
of
regular
expressions
with
too
big
charset
.
-
Issue
#
19350
:
Increasing
the
test
coverage
of
macurl2path
.
Patch
by
Colin
Williams
.
...
...
Modules/_sre.c
Dosyayı görüntüle @
be80fc9a
...
...
@@ -451,7 +451,7 @@ SRE_CHARSET(SRE_CODE* set, SRE_CODE ch)
count
=
*
(
set
++
);
if
(
sizeof
(
SRE_CODE
)
==
2
)
{
block
=
((
char
*
)
set
)[
ch
>>
8
];
block
=
((
unsigned
char
*
)
set
)[
ch
>>
8
];
set
+=
128
;
if
(
set
[
block
*
16
+
((
ch
&
255
)
>>
4
)]
&
(
1
<<
(
ch
&
15
)))
return
ok
;
...
...
@@ -461,7 +461,7 @@ SRE_CHARSET(SRE_CODE* set, SRE_CODE ch)
/* !(c & ~N) == (c < N+1) for any unsigned c, this avoids
* warnings when c's type supports only numbers < N+1 */
if
(
!
(
ch
&
~
65535
))
block
=
((
char
*
)
set
)[
ch
>>
8
];
block
=
((
unsigned
char
*
)
set
)[
ch
>>
8
];
else
block
=
-
1
;
set
+=
64
;
...
...
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