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
482b151c
Kaydet (Commit)
482b151c
authored
Mar 21, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix some issues found by Jacques Ducasse on the docs list.
üst
f8754a60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
16 deletions
+9
-16
sys.rst
Doc/library/sys.rst
+7
-10
simple_stmts.rst
Doc/reference/simple_stmts.rst
+2
-6
No files found.
Doc/library/sys.rst
Dosyayı görüntüle @
482b151c
...
@@ -127,13 +127,12 @@ always available.
...
@@ -127,13 +127,12 @@ always available.
.. index:: object: traceback
.. index:: object: traceback
If no exception is being handled anywhere on the stack, a tuple containing three
If no exception is being handled anywhere on the stack, a tuple containing
``None`` values is returned. Otherwise, the values returned are ``(type, value,
three ``None`` values is returned. Otherwise, the values returned are
traceback)``. Their meaning is: *type* gets the exception type of the exception
``(type, value, traceback)``. Their meaning is: *type* gets the type of the
being handled (a class object); *value* gets the exception parameter (its
exception being handled (a subclass of :exc:`BaseException`); *value* gets
:dfn:`associated value` or the second argument to :keyword:`raise`, which is
the exception instance (an instance of the exception type); *traceback* gets
always a class instance if the exception type is a class object); *traceback*
a traceback object (see the Reference Manual) which encapsulates the call
gets a traceback object (see the Reference Manual) which encapsulates the call
stack at the point where the exception originally occurred.
stack at the point where the exception originally occurred.
.. warning::
.. warning::
...
@@ -508,9 +507,7 @@ always available.
...
@@ -508,9 +507,7 @@ always available.
more information.)
more information.)
The meaning of the variables is the same as that of the return values from
The meaning of the variables is the same as that of the return values from
:func:`exc_info` above. (Since there is only one interactive thread,
:func:`exc_info` above.
thread-safety is not a concern for these variables, unlike for ``exc_type``
etc.)
.. data:: maxsize
.. data:: maxsize
...
...
Doc/reference/simple_stmts.rst
Dosyayı görüntüle @
482b151c
...
@@ -146,16 +146,12 @@ Assignment of an object to a single target is recursively defined as follows.
...
@@ -146,16 +146,12 @@ Assignment of an object to a single target is recursively defined as follows.
*
Otherwise
:
the
name
is
bound
to
the
object
in
the
global
namespace
or
the
*
Otherwise
:
the
name
is
bound
to
the
object
in
the
global
namespace
or
the
outer
namespace
determined
by
:
keyword
:`
nonlocal
`,
respectively
.
outer
namespace
determined
by
:
keyword
:`
nonlocal
`,
respectively
.
..
index
::
single
:
destructor
The
name
is
rebound
if
it
was
already
bound
.
This
may
cause
the
reference
The
name
is
rebound
if
it
was
already
bound
.
This
may
cause
the
reference
count
for
the
object
previously
bound
to
the
name
to
reach
zero
,
causing
the
count
for
the
object
previously
bound
to
the
name
to
reach
zero
,
causing
the
object
to
be
deallocated
and
its
destructor
(
if
it
has
one
)
to
be
called
.
object
to
be
deallocated
and
its
destructor
(
if
it
has
one
)
to
be
called
.
..
index
::
single
:
destructor
The
name
is
rebound
if
it
was
already
bound
.
This
may
cause
the
reference
count
for
the
object
previously
bound
to
the
name
to
reach
zero
,
causing
the
object
to
be
deallocated
and
its
destructor
(
if
it
has
one
)
to
be
called
.
*
If
the
target
is
a
target
list
enclosed
in
parentheses
or
in
square
brackets
:
*
If
the
target
is
a
target
list
enclosed
in
parentheses
or
in
square
brackets
:
The
object
must
be
an
iterable
with
the
same
number
of
items
as
there
are
The
object
must
be
an
iterable
with
the
same
number
of
items
as
there
are
targets
in
the
target
list
,
and
its
items
are
assigned
,
from
left
to
right
,
targets
in
the
target
list
,
and
its
items
are
assigned
,
from
left
to
right
,
...
...
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