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
227b1204
Kaydet (Commit)
227b1204
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
9b8d801c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
12 deletions
+17
-12
aifc.py
Lib/aifc.py
+2
-1
audiodev.py
Lib/audiodev.py
+2
-1
binhex.py
Lib/binhex.py
+2
-1
copy.py
Lib/copy.py
+3
-2
ftplib.py
Lib/ftplib.py
+6
-6
multifile.py
Lib/multifile.py
+2
-1
No files found.
Lib/aifc.py
Dosyayı görüntüle @
227b1204
...
...
@@ -137,7 +137,8 @@ writeframesraw.
import
struct
import
__builtin__
Error
=
'aifc.Error'
class
Error
(
Exception
):
pass
_AIFC_version
=
0xA2805140
# Version 1 of AIFF-C
...
...
Lib/audiodev.py
Dosyayı görüntüle @
227b1204
"""Classes for manipulating audio devices (currently only for Sun and SGI)"""
error
=
'audiodev.error'
class
error
(
Exception
):
pass
class
Play_Audio_sgi
:
# Private instance variables
...
...
Lib/binhex.py
Dosyayı görüntüle @
227b1204
...
...
@@ -27,7 +27,8 @@ import struct
import
string
import
binascii
Error
=
'binhex.Error'
class
Error
(
Exception
):
pass
# States (what have we written)
[
_DID_HEADER
,
_DID_DATA
,
_DID_RSRC
]
=
range
(
3
)
...
...
Lib/copy.py
Dosyayı görüntüle @
227b1204
...
...
@@ -52,8 +52,9 @@ __getstate__() and __setstate__(). See the documentation for module
import
types
error
=
'copy.error'
Error
=
error
# backward compatibility
class
Error
(
Exception
):
pass
error
=
Error
# backward compatibility
def
copy
(
x
):
"""Shallow copy operation on arbitrary Python objects.
...
...
Lib/ftplib.py
Dosyayı görüntüle @
227b1204
...
...
@@ -56,16 +56,16 @@ FTP_PORT = 21
# Exception raised when an error or invalid response is received
error_reply
=
'ftplib.error_reply'
# unexpected [123]xx reply
error_temp
=
'ftplib.error_temp'
# 4xx errors
error_perm
=
'ftplib.error_perm'
# 5xx errors
error_proto
=
'ftplib.error_proto'
# response does not begin with [1-5]
class
Error
(
Exception
):
pass
class
error_reply
(
Error
):
pass
# unexpected [123]xx reply
class
error_temp
(
Error
):
pass
# 4xx errors
class
error_perm
(
Error
):
pass
# 5xx errors
class
error_proto
(
Error
):
pass
# response does not begin with [1-5]
# All exceptions (hopefully) that may be raised here and that aren't
# (always) programming errors on our side
all_errors
=
(
error_reply
,
error_temp
,
error_perm
,
error_proto
,
\
socket
.
error
,
IOError
,
EOFError
)
all_errors
=
(
Error
,
socket
.
error
,
IOError
,
EOFError
)
# Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
...
...
Lib/multifile.py
Dosyayı görüntüle @
227b1204
...
...
@@ -30,7 +30,8 @@ seekable stream object.
import
sys
import
string
Error
=
'multifile.Error'
class
Error
(
Exception
):
pass
class
MultiFile
:
...
...
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