Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
40c62615
Commit
40c62615
authored
Mar 06, 2007
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #1654417: make operator.{get,set,del}slice use the full range
of Py_ssize_t.
parent
667eb7c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
13 deletions
+20
-13
Lib/test/test_operator.py
Lib/test/test_operator.py
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/operator.c
Modules/operator.c
+11
-13
No files found.
Lib/test/test_operator.py
View file @
40c62615
...
...
@@ -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
View file @
40c62615
...
...
@@ -406,6 +406,9 @@ Library
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
View file @
40c62615
...
...
@@ -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