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
e41d4c8e
Kaydet (Commit)
e41d4c8e
authored
Agu 25, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added doubled word warnings.
üst
999b57c8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
ref3.tex
Doc/ref/ref3.tex
+1
-1
NEWS
Misc/NEWS
+2
-0
texcheck.py
Tools/scripts/texcheck.py
+3
-0
No files found.
Doc/ref/ref3.tex
Dosyayı görüntüle @
e41d4c8e
...
@@ -1740,7 +1740,7 @@ in a negative index); this is the customary handling of negative
...
@@ -1740,7 +1740,7 @@ in a negative index); this is the customary handling of negative
indexes by the built-in sequence types, and the
\method
{__
*item
__
()
}
indexes by the built-in sequence types, and the
\method
{__
*item
__
()
}
methods are expected to do this as well. However, since they should
methods are expected to do this as well. However, since they should
already be doing that, negative indexes cannot be passed in; they must
already be doing that, negative indexes cannot be passed in; they must
be
be
constrained to the bounds of the sequence before being passed to
be constrained to the bounds of the sequence before being passed to
the
\method
{__
*item
__
()
}
methods.
the
\method
{__
*item
__
()
}
methods.
Calling
\code
{
max(0, i)
}
conveniently returns the proper value.
Calling
\code
{
max(0, i)
}
conveniently returns the proper value.
...
...
Misc/NEWS
Dosyayı görüntüle @
e41d4c8e
...
@@ -55,6 +55,8 @@ Library
...
@@ -55,6 +55,8 @@ Library
Tools
/
Demos
Tools
/
Demos
-----------
-----------
-
texcheck
.
py
now
detects
double
word
errors
.
-
md5sum
.
py
mistakenly
opened
input
files
in
text
mode
by
default
,
a
-
md5sum
.
py
mistakenly
opened
input
files
in
text
mode
by
default
,
a
silent
and
dangerous
change
from
previous
releases
.
It
once
again
silent
and
dangerous
change
from
previous
releases
.
It
once
again
opens
input
files
in
binary
mode
by
default
.
The
-
t
and
-
b
flags
opens
input
files
in
binary
mode
by
default
.
The
-
t
and
-
b
flags
...
...
Tools/scripts/texcheck.py
Dosyayı görüntüle @
e41d4c8e
...
@@ -98,6 +98,7 @@ def checkit(source, opts, morecmds=[]):
...
@@ -98,6 +98,7 @@ def checkit(source, opts, morecmds=[]):
delimiters
=
re
.
compile
(
r'\\(begin|end){([_a-zA-Z]+)}|([()\[\]])'
)
delimiters
=
re
.
compile
(
r'\\(begin|end){([_a-zA-Z]+)}|([()\[\]])'
)
braces
=
re
.
compile
(
r'({)|(})'
)
braces
=
re
.
compile
(
r'({)|(})'
)
doubledwords
=
re
.
compile
(
r'(\b[A-za-z]+\b) \b\1\b'
)
openers
=
[]
# Stack of pending open delimiters
openers
=
[]
# Stack of pending open delimiters
bracestack
=
[]
# Stack of pending open braces
bracestack
=
[]
# Stack of pending open braces
...
@@ -175,6 +176,8 @@ def checkit(source, opts, morecmds=[]):
...
@@ -175,6 +176,8 @@ def checkit(source, opts, morecmds=[]):
if
'e.g.'
in
line
or
'i.e.'
in
line
:
if
'e.g.'
in
line
or
'i.e.'
in
line
:
print
r'Style warning, avoid use of i.e or e.g. on line
%
d'
%
(
lineno
,)
print
r'Style warning, avoid use of i.e or e.g. on line
%
d'
%
(
lineno
,)
for
dw
in
doubledwords
.
findall
(
line
):
print
r'Doubled word warning. "
%
s" on line
%
d'
%
(
dw
,
lineno
)
lastline
=
lineno
lastline
=
lineno
for
lineno
,
symbol
in
openers
:
for
lineno
,
symbol
in
openers
:
...
...
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