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
7d5fbaee
Kaydet (Commit)
7d5fbaee
authored
Ock 30, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Demonstrate new except/as syntax.
üst
7d518f41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
errors.rst
Doc/tutorial/errors.rst
+4
-4
No files found.
Doc/tutorial/errors.rst
Dosyayı görüntüle @
7d5fbaee
...
...
@@ -131,7 +131,7 @@ the exception (allowing a caller to handle the exception as well)::
f = open('myfile.txt')
s = f.readline()
i = int(s.strip())
except IOError
,
(errno, strerror):
except IOError
as
(errno, strerror):
print "I/O error(%s): %s" % (errno, strerror)
except ValueError:
print "Could not convert data to an integer."
...
...
@@ -176,7 +176,7 @@ desired. ::
>>> try:
... raise Exception('spam', 'eggs')
... except Exception
,
inst:
... except Exception
as
inst:
... print type(inst) # the exception instance
... print inst.args # arguments stored in .args
... print inst # __str__ allows args to printed directly
...
...
@@ -202,7 +202,7 @@ indirectly) in the try clause. For example::
...
>>> try:
... this_fails()
... except ZeroDivisionError
,
detail:
... except ZeroDivisionError
as
detail:
... print 'Handling run-time error:', detail
...
Handling run-time error: integer division or modulo by zero
...
...
@@ -259,7 +259,7 @@ directly or indirectly. For example::
...
>>> try:
... raise MyError(2*2)
... except MyError
,
e:
... except MyError
as
e:
... print 'My exception occurred, value:', e.value
...
My exception occurred, value: 4
...
...
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