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
5b0dac12
Kaydet (Commit)
5b0dac12
authored
Haz 17, 2012
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13783: PEP 380 cleanup part 2, using the new identifier APIs in the generator implementation
üst
c40bc099
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
NEWS
Misc/NEWS
+2
-0
genobject.c
Objects/genobject.c
+4
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
5b0dac12
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
-----------------
- Issue #13783: Generator objects now use the identifier APIs internally
- Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels.
Patch by Serhiy Storchaka.
...
...
Objects/genobject.c
Dosyayı görüntüle @
5b0dac12
...
...
@@ -149,13 +149,14 @@ static int
gen_close_iter
(
PyObject
*
yf
)
{
PyObject
*
retval
=
NULL
;
_Py_IDENTIFIER
(
close
);
if
(
PyGen_CheckExact
(
yf
))
{
retval
=
gen_close
((
PyGenObject
*
)
yf
,
NULL
);
if
(
retval
==
NULL
)
return
-
1
;
}
else
{
PyObject
*
meth
=
PyObject_GetAttrString
(
yf
,
"close"
);
PyObject
*
meth
=
_PyObject_GetAttrId
(
yf
,
&
PyId_close
);
if
(
meth
==
NULL
)
{
if
(
!
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
PyErr_WriteUnraisable
(
yf
);
...
...
@@ -295,6 +296,7 @@ gen_throw(PyGenObject *gen, PyObject *args)
PyObject
*
tb
=
NULL
;
PyObject
*
val
=
NULL
;
PyObject
*
yf
=
gen_yf
(
gen
);
_Py_IDENTIFIER
(
throw
);
if
(
!
PyArg_UnpackTuple
(
args
,
"throw"
,
1
,
3
,
&
typ
,
&
val
,
&
tb
))
return
NULL
;
...
...
@@ -316,7 +318,7 @@ gen_throw(PyGenObject *gen, PyObject *args)
ret
=
gen_throw
((
PyGenObject
*
)
yf
,
args
);
gen
->
gi_running
=
0
;
}
else
{
PyObject
*
meth
=
PyObject_GetAttrString
(
yf
,
"throw"
);
PyObject
*
meth
=
_PyObject_GetAttrId
(
yf
,
&
PyId_throw
);
if
(
meth
==
NULL
)
{
if
(
!
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
{
Py_DECREF
(
yf
);
...
...
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