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
4358b2c9
Kaydet (Commit)
4358b2c9
authored
Haz 30, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
the usual
üst
257543c7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
8 deletions
+50
-8
sre_comp.py
Lib/dos-8x3/sre_comp.py
+0
-0
sre_cons.py
Lib/dos-8x3/sre_cons.py
+24
-8
sre_pars.py
Lib/dos-8x3/sre_pars.py
+0
-0
test_has.py
Lib/dos-8x3/test_has.py
+26
-0
No files found.
Lib/dos-8x3/sre_comp.py
Dosyayı görüntüle @
4358b2c9
This diff is collapsed.
Click to expand it.
Lib/dos-8x3/sre_cons.py
Dosyayı görüntüle @
4358b2c9
...
...
@@ -23,6 +23,7 @@ SUCCESS = "success"
ANY
=
"any"
ASSERT
=
"assert"
ASSERT_NOT
=
"assert_not"
AT
=
"at"
BRANCH
=
"branch"
CALL
=
"call"
...
...
@@ -81,7 +82,7 @@ OPCODES = [
FAILURE
,
SUCCESS
,
ANY
,
ASSERT
,
ASSERT
,
ASSERT_NOT
,
AT
,
BRANCH
,
CALL
,
...
...
@@ -121,8 +122,8 @@ def makedict(list):
d
=
{}
i
=
0
for
item
in
list
:
d
[
item
]
=
i
i
=
i
+
1
d
[
item
]
=
i
i
=
i
+
1
return
d
OPCODES
=
makedict
(
OPCODES
)
...
...
@@ -176,12 +177,27 @@ SRE_FLAG_VERBOSE = 64
if
__name__
==
"__main__"
:
import
string
def
dump
(
f
,
d
,
prefix
):
items
=
d
.
items
()
items
.
sort
(
lambda
a
,
b
:
cmp
(
a
[
1
],
b
[
1
]))
for
k
,
v
in
items
:
f
.
write
(
"#define
%
s_
%
s
%
s
\n
"
%
(
prefix
,
string
.
upper
(
k
),
v
))
items
=
d
.
items
()
items
.
sort
(
lambda
a
,
b
:
cmp
(
a
[
1
],
b
[
1
]))
for
k
,
v
in
items
:
f
.
write
(
"#define
%
s_
%
s
%
s
\n
"
%
(
prefix
,
string
.
upper
(
k
),
v
))
f
=
open
(
"sre_constants.h"
,
"w"
)
f
.
write
(
"/* generated from sre_constants.py */
\n
"
)
f
.
write
(
"""
\
/*
* Secret Labs' Regular Expression Engine
*
* regular expression matching engine
*
* NOTE: This file is generated by sre_constants.py. If you need
* to change anything in here, edit sre_constants.py and run it.
*
* Copyright (c) 1997-2000 by Secret Labs AB. All rights reserved.
*
* See the _sre.c file for information on usage and redistribution.
*/
"""
)
dump
(
f
,
OPCODES
,
"SRE_OP"
)
dump
(
f
,
ATCODES
,
"SRE"
)
dump
(
f
,
CHCODES
,
"SRE"
)
...
...
Lib/dos-8x3/sre_pars.py
Dosyayı görüntüle @
4358b2c9
This diff is collapsed.
Click to expand it.
Lib/dos-8x3/test_has.py
0 → 100644
Dosyayı görüntüle @
4358b2c9
# test the invariant that
# iff a==b then hash(a)==hash(b)
#
import
test_support
def
same_hash
(
*
objlist
):
# hash each object given an raise TestFailed if
# the hash values are not all the same
hashed
=
map
(
hash
,
objlist
)
for
h
in
hashed
[
1
:]:
if
h
!=
hashed
[
0
]:
raise
TestFailed
,
"hashed values differ:
%
s"
%
`objlist`
same_hash
(
1
,
1L
,
1.0
,
1.0
+
0.0
j
)
same_hash
(
int
(
1
),
long
(
1
),
float
(
1
),
complex
(
1
))
same_hash
(
long
(
1.23e300
),
float
(
1.23e300
))
same_hash
(
float
(
0.5
),
complex
(
0.5
,
0.0
))
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