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
f36f8925
Kaydet (Commit)
f36f8925
authored
Şub 21, 2019
tarafından
Joe Jevnik
Kaydeden (comit)
Raymond Hettinger
Şub 21, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36068: Make _tuplegetter objects serializable (GH-11981)
üst
407c7343
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
3 deletions
+23
-3
3.8.rst
Doc/whatsnew/3.8.rst
+1
-1
test_collections.py
Lib/test/test_collections.py
+10
-1
_collectionsmodule.c
Modules/_collectionsmodule.c
+12
-1
No files found.
Doc/whatsnew/3.8.rst
Dosyayı görüntüle @
f36f8925
...
...
@@ -368,7 +368,7 @@ Optimizations
* Sped-up field lookups in :func:`collections.namedtuple`. They are now more
than two times faster, making them the fastest form of instance variable
lookup in Python. (Contributed by Raymond Hettinger, Pablo Galindo, and
Serhiy Storchaka in :issue:`32492`.)
Joe Jevnik,
Serhiy Storchaka in :issue:`32492`.)
* The :class:`list` constructor does not overallocate the internal item buffer
if the input iterable has a known length (the input implements ``__len__``).
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
f36f8925
...
...
@@ -13,7 +13,7 @@ from test import support
import
types
import
unittest
from
collections
import
namedtuple
,
Counter
,
OrderedDict
,
_count_elements
from
collections
import
namedtuple
,
Counter
,
OrderedDict
,
_count_elements
,
_tuplegetter
from
collections
import
UserDict
,
UserString
,
UserList
from
collections
import
ChainMap
from
collections
import
deque
...
...
@@ -573,6 +573,15 @@ class TestNamedTuple(unittest.TestCase):
self
.
assertRaises
(
AttributeError
,
Point
.
x
.
__set__
,
p
,
33
)
self
.
assertRaises
(
AttributeError
,
Point
.
x
.
__delete__
,
p
)
class
NewPoint
(
tuple
):
x
=
pickle
.
loads
(
pickle
.
dumps
(
Point
.
x
))
y
=
pickle
.
loads
(
pickle
.
dumps
(
Point
.
y
))
np
=
NewPoint
([
1
,
2
])
self
.
assertEqual
(
np
.
x
,
1
)
self
.
assertEqual
(
np
.
y
,
2
)
################################################################################
### Abstract Base Classes
...
...
Modules/_collectionsmodule.c
Dosyayı görüntüle @
f36f8925
...
...
@@ -2440,12 +2440,23 @@ tuplegetter_dealloc(_tuplegetterobject *self)
Py_TYPE
(
self
)
->
tp_free
((
PyObject
*
)
self
);
}
static
PyObject
*
tuplegetter_reduce
(
_tuplegetterobject
*
self
)
{
return
Py_BuildValue
(
"(O(nO))"
,
(
PyObject
*
)
Py_TYPE
(
self
),
self
->
index
,
self
->
doc
);
}
static
PyMemberDef
tuplegetter_members
[]
=
{
{
"__doc__"
,
T_OBJECT
,
offsetof
(
_tuplegetterobject
,
doc
),
0
},
{
0
}
};
static
PyMethodDef
tuplegetter_methods
[]
=
{
{
"__reduce__"
,
(
PyCFunction
)
tuplegetter_reduce
,
METH_NOARGS
,
NULL
},
{
NULL
},
};
static
PyTypeObject
tuplegetter_type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
"_collections._tuplegetter"
,
/* tp_name */
...
...
@@ -2475,7 +2486,7 @@ static PyTypeObject tuplegetter_type = {
0
,
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
0
,
/* tp_methods */
tuplegetter_methods
,
/* tp_methods */
tuplegetter_members
,
/* tp_members */
0
,
/* tp_getset */
0
,
/* tp_base */
...
...
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