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
9b8d801c
Kaydet (Commit)
9b8d801c
authored
Agu 17, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert some old-style string exceptions to class exceptions.
üst
de9fec5f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
6 deletions
+14
-6
sunau.py
Lib/sunau.py
+2
-1
sunaudio.py
Lib/sunaudio.py
+2
-1
toaiff.py
Lib/toaiff.py
+2
-1
tokenize.py
Lib/tokenize.py
+4
-1
uu.py
Lib/uu.py
+2
-1
wave.py
Lib/wave.py
+2
-1
No files found.
Lib/sunau.py
Dosyayı görüntüle @
9b8d801c
...
@@ -128,7 +128,8 @@ _simple_encodings = [AUDIO_FILE_ENCODING_MULAW_8,
...
@@ -128,7 +128,8 @@ _simple_encodings = [AUDIO_FILE_ENCODING_MULAW_8,
AUDIO_FILE_ENCODING_LINEAR_32
,
AUDIO_FILE_ENCODING_LINEAR_32
,
AUDIO_FILE_ENCODING_ALAW_8
]
AUDIO_FILE_ENCODING_ALAW_8
]
Error
=
'sunau.Error'
class
Error
(
Exception
):
pass
def
_read_u32
(
file
):
def
_read_u32
(
file
):
x
=
0L
x
=
0L
...
...
Lib/sunaudio.py
Dosyayı görüntüle @
9b8d801c
...
@@ -2,7 +2,8 @@
...
@@ -2,7 +2,8 @@
MAGIC
=
'.snd'
MAGIC
=
'.snd'
error
=
'sunaudio sound header conversion error'
class
error
(
Exception
):
pass
def
get_long_be
(
s
):
def
get_long_be
(
s
):
...
...
Lib/toaiff.py
Dosyayı görüntüle @
9b8d801c
...
@@ -53,7 +53,8 @@ uncompress = pipes.Template()
...
@@ -53,7 +53,8 @@ uncompress = pipes.Template()
uncompress
.
append
(
'uncompress'
,
'--'
)
uncompress
.
append
(
'uncompress'
,
'--'
)
error
=
'toaiff.error'
# Exception
class
error
(
Exception
):
pass
def
toaiff
(
filename
):
def
toaiff
(
filename
):
temps
=
[]
temps
=
[]
...
...
Lib/tokenize.py
Dosyayı görüntüle @
9b8d801c
...
@@ -76,7 +76,10 @@ endprogs = {"'": re.compile(Single), '"': re.compile(Double),
...
@@ -76,7 +76,10 @@ endprogs = {"'": re.compile(Single), '"': re.compile(Double),
"R'''"
:
single3prog
,
'R"""'
:
double3prog
,
'r'
:
None
,
'R'
:
None
}
"R'''"
:
single3prog
,
'R"""'
:
double3prog
,
'r'
:
None
,
'R'
:
None
}
tabsize
=
8
tabsize
=
8
TokenError
=
'TokenError'
class
TokenError
(
Exception
):
pass
def
printtoken
(
type
,
token
,
(
srow
,
scol
),
(
erow
,
ecol
),
line
):
# for testing
def
printtoken
(
type
,
token
,
(
srow
,
scol
),
(
erow
,
ecol
),
line
):
# for testing
print
"
%
d,
%
d-
%
d,
%
d:
\t
%
s
\t
%
s"
%
\
print
"
%
d,
%
d-
%
d,
%
d:
\t
%
s
\t
%
s"
%
\
(
srow
,
scol
,
erow
,
ecol
,
tok_name
[
type
],
repr
(
token
))
(
srow
,
scol
,
erow
,
ecol
,
tok_name
[
type
],
repr
(
token
))
...
...
Lib/uu.py
Dosyayı görüntüle @
9b8d801c
...
@@ -35,7 +35,8 @@ import os
...
@@ -35,7 +35,8 @@ import os
import
string
import
string
import
sys
import
sys
Error
=
'uu.Error'
class
Error
(
Exception
):
pass
def
encode
(
in_file
,
out_file
,
name
=
None
,
mode
=
None
):
def
encode
(
in_file
,
out_file
,
name
=
None
,
mode
=
None
):
"""Uuencode file"""
"""Uuencode file"""
...
...
Lib/wave.py
Dosyayı görüntüle @
9b8d801c
...
@@ -73,7 +73,8 @@ is destroyed.
...
@@ -73,7 +73,8 @@ is destroyed.
import
__builtin__
import
__builtin__
Error
=
'wave.Error'
class
Error
(
Exception
):
pass
WAVE_FORMAT_PCM
=
0x0001
WAVE_FORMAT_PCM
=
0x0001
...
...
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