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
62b1b001
Kaydet (Commit)
62b1b001
authored
Mar 06, 2007
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1654417: make operator.{get,set,del}slice use the full range
of Py_ssize_t. (backport from rev. 54177)
üst
2230d980
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
13 deletions
+20
-13
test_operator.py
Lib/test/test_operator.py
+6
-0
NEWS
Misc/NEWS
+3
-0
operator.c
Modules/operator.c
+11
-13
No files found.
Lib/test/test_operator.py
Dosyayı görüntüle @
62b1b001
...
...
@@ -143,6 +143,8 @@ class OperatorTestCase(unittest.TestCase):
self
.
failUnlessRaises
(
TypeError
,
operator
.
delslice
,
a
,
None
,
None
)
self
.
failUnless
(
operator
.
delslice
(
a
,
2
,
8
)
is
None
)
self
.
assert_
(
a
==
[
0
,
1
,
8
,
9
])
operator
.
delslice
(
a
,
0
,
test_support
.
MAX_Py_ssize_t
)
self
.
assert_
(
a
==
[])
def
test_div
(
self
):
self
.
failUnlessRaises
(
TypeError
,
operator
.
div
,
5
)
...
...
@@ -170,6 +172,8 @@ class OperatorTestCase(unittest.TestCase):
self
.
failUnlessRaises
(
TypeError
,
operator
.
getslice
)
self
.
failUnlessRaises
(
TypeError
,
operator
.
getslice
,
a
,
None
,
None
)
self
.
failUnless
(
operator
.
getslice
(
a
,
4
,
6
)
==
[
4
,
5
])
b
=
operator
.
getslice
(
a
,
0
,
test_support
.
MAX_Py_ssize_t
)
self
.
assert_
(
b
==
a
)
def
test_indexOf
(
self
):
self
.
failUnlessRaises
(
TypeError
,
operator
.
indexOf
)
...
...
@@ -318,6 +322,8 @@ class OperatorTestCase(unittest.TestCase):
self
.
failUnlessRaises
(
TypeError
,
operator
.
setslice
,
a
,
None
,
None
,
None
)
self
.
failUnless
(
operator
.
setslice
(
a
,
1
,
3
,
[
2
,
1
])
is
None
)
self
.
assert_
(
a
==
[
0
,
2
,
1
,
3
])
operator
.
setslice
(
a
,
0
,
test_support
.
MAX_Py_ssize_t
,
[])
self
.
assert_
(
a
==
[])
def
test_sub
(
self
):
self
.
failUnlessRaises
(
TypeError
,
operator
.
sub
)
...
...
Misc/NEWS
Dosyayı görüntüle @
62b1b001
...
...
@@ -120,6 +120,9 @@ Core and builtins
Extension Modules
-----------------
- Patch #1654417: make operator.{get,set,del}slice use the full range
of Py_ssize_t.
- Patch #1646728: datetime.fromtimestamp fails with negative
fractional times. With unittest.
...
...
Modules/operator.c
Dosyayı görüntüle @
62b1b001
...
...
@@ -168,43 +168,41 @@ static PyObject*
op_getslice
(
PyObject
*
s
,
PyObject
*
a
)
{
PyObject
*
a1
;
int
a2
,
a3
;
Py_ssize_t
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"Oii:getslice"
,
&
a1
,
&
a2
,
&
a3
))
if
(
!
PyArg_ParseTuple
(
a
,
"Onn:getslice"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
return
PySequence_GetSlice
(
a1
,
a2
,
a3
);
return
PySequence_GetSlice
(
a1
,
a2
,
a3
);
}
static
PyObject
*
op_setslice
(
PyObject
*
s
,
PyObject
*
a
)
{
PyObject
*
a1
,
*
a4
;
int
a2
,
a3
;
Py_ssize_t
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"OiiO:setslice"
,
&
a1
,
&
a2
,
&
a3
,
&
a4
))
if
(
!
PyArg_ParseTuple
(
a
,
"OnnO:setslice"
,
&
a1
,
&
a2
,
&
a3
,
&
a4
))
return
NULL
;
if
(
-
1
==
PySequence_SetSlice
(
a1
,
a2
,
a3
,
a4
))
if
(
-
1
==
PySequence_SetSlice
(
a1
,
a2
,
a3
,
a4
))
return
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
Py_RETURN_NONE
;
}
static
PyObject
*
op_delslice
(
PyObject
*
s
,
PyObject
*
a
)
{
PyObject
*
a1
;
int
a2
,
a3
;
Py_ssize_t
a2
,
a3
;
if
(
!
PyArg_ParseTuple
(
a
,
"Oii:delslice"
,
&
a1
,
&
a2
,
&
a3
))
if
(
!
PyArg_ParseTuple
(
a
,
"Onn:delslice"
,
&
a1
,
&
a2
,
&
a3
))
return
NULL
;
if
(
-
1
==
PySequence_DelSlice
(
a1
,
a2
,
a3
))
if
(
-
1
==
PySequence_DelSlice
(
a1
,
a2
,
a3
))
return
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
Py_RETURN_NONE
;
}
#undef spam1
...
...
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