Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
01ff3e39
Commit
01ff3e39
authored
Mar 04, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support some cases of passing a base to int()
parent
cb70ba7f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
46 additions
and
16 deletions
+46
-16
from_cpython/Include/intobject.h
from_cpython/Include/intobject.h
+1
-1
from_cpython/Include/longobject.h
from_cpython/Include/longobject.h
+1
-1
src/runtime/int.cpp
src/runtime/int.cpp
+33
-13
src/runtime/long.cpp
src/runtime/long.cpp
+1
-1
test/tests/intmethods.py
test/tests/intmethods.py
+10
-0
No files found.
from_cpython/Include/intobject.h
View file @
01ff3e39
...
...
@@ -45,7 +45,7 @@ PyAPI_FUNC(bool) _PyInt_Check(PyObject*) PYSTON_NOEXCEPT;
#endif
#define PyInt_CheckExact(op) (Py_TYPE(op) == &PyInt_Type)
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromString
(
char
*
,
char
**
,
int
)
PYSTON_NOEXCEPT
;
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromString
(
c
onst
c
har
*
,
char
**
,
int
)
PYSTON_NOEXCEPT
;
#ifdef Py_USING_UNICODE
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromUnicode
(
Py_UNICODE
*
,
Py_ssize_t
,
int
)
PYSTON_NOEXCEPT
;
#endif
...
...
from_cpython/Include/longobject.h
View file @
01ff3e39
...
...
@@ -69,7 +69,7 @@ PyAPI_FUNC(unsigned PY_LONG_LONG) PyLong_AsUnsignedLongLongMask(PyObject *) PYST
PyAPI_FUNC
(
PY_LONG_LONG
)
PyLong_AsLongLongAndOverflow
(
PyObject
*
,
int
*
)
PYSTON_NOEXCEPT
;
#endif
/* HAVE_LONG_LONG */
PyAPI_FUNC
(
PyObject
*
)
PyLong_FromString
(
char
*
,
char
**
,
int
)
PYSTON_NOEXCEPT
;
PyAPI_FUNC
(
PyObject
*
)
PyLong_FromString
(
c
onst
c
har
*
,
char
**
,
int
)
PYSTON_NOEXCEPT
;
#ifdef Py_USING_UNICODE
PyAPI_FUNC
(
PyObject
*
)
PyLong_FromUnicode
(
Py_UNICODE
*
,
Py_ssize_t
,
int
)
PYSTON_NOEXCEPT
;
#endif
...
...
src/runtime/int.cpp
View file @
01ff3e39
...
...
@@ -82,7 +82,7 @@ extern "C" int _PyInt_AsInt(PyObject* obj) noexcept {
return
(
int
)
result
;
}
extern
"C"
PyObject
*
PyInt_FromString
(
char
*
s
,
char
**
pend
,
int
base
)
noexcept
{
extern
"C"
PyObject
*
PyInt_FromString
(
c
onst
c
har
*
s
,
char
**
pend
,
int
base
)
noexcept
{
char
*
end
;
long
x
;
Py_ssize_t
slen
;
...
...
@@ -813,30 +813,50 @@ extern "C" Box* intOct(BoxedInt* self) {
return
new
BoxedString
(
std
::
string
(
buf
,
len
));
}
Box
*
_intNew
(
Box
*
val
)
{
static
Box
*
_intNew
(
Box
*
val
,
Box
*
base
)
{
if
(
isSubclass
(
val
->
cls
,
int_cls
))
{
RELEASE_ASSERT
(
!
base
,
""
);
BoxedInt
*
n
=
static_cast
<
BoxedInt
*>
(
val
);
if
(
val
->
cls
==
int_cls
)
return
n
;
return
new
BoxedInt
(
n
->
n
);
}
else
if
(
val
->
cls
==
str_cls
)
{
int
base_n
;
if
(
!
base
)
base_n
=
10
;
else
{
RELEASE_ASSERT
(
base
->
cls
==
int_cls
,
""
);
base_n
=
static_cast
<
BoxedInt
*>
(
base
)
->
n
;
}
BoxedString
*
s
=
static_cast
<
BoxedString
*>
(
val
);
// TODO: use PyInt_FromString here
std
::
istringstream
ss
(
s
->
s
);
int64_t
n
;
ss
>>
n
;
return
new
BoxedInt
(
n
);
RELEASE_ASSERT
(
s
->
s
.
size
()
==
strlen
(
s
->
s
.
c_str
()),
""
);
Box
*
r
=
PyInt_FromString
(
s
->
s
.
c_str
(),
NULL
,
base_n
);
if
(
!
r
)
throwCAPIException
();
assert
(
r
);
return
r
;
}
else
if
(
val
->
cls
==
unicode_cls
)
{
Box
*
r
=
PyInt_FromUnicode
(
PyUnicode_AS_UNICODE
(
val
),
PyUnicode_GET_SIZE
(
val
),
10
);
int
base_n
;
if
(
!
base
)
base_n
=
10
;
else
{
RELEASE_ASSERT
(
base
->
cls
==
int_cls
,
""
);
base_n
=
static_cast
<
BoxedInt
*>
(
base
)
->
n
;
}
Box
*
r
=
PyInt_FromUnicode
(
PyUnicode_AS_UNICODE
(
val
),
PyUnicode_GET_SIZE
(
val
),
base_n
);
if
(
!
r
)
throwCAPIException
();
assert
(
r
);
return
r
;
}
else
if
(
val
->
cls
==
float_cls
)
{
RELEASE_ASSERT
(
!
base
,
""
);
double
d
=
static_cast
<
BoxedFloat
*>
(
val
)
->
d
;
return
new
BoxedInt
(
d
);
}
else
{
RELEASE_ASSERT
(
!
base
,
""
);
static
const
std
::
string
int_str
(
"__int__"
);
Box
*
r
=
callattr
(
val
,
&
int_str
,
CallattrFlags
({.
cls_only
=
true
,
.
null_on_nonexistent
=
true
}),
ArgPassSpec
(
0
),
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
...
...
@@ -853,7 +873,7 @@ Box* _intNew(Box* val) {
}
}
extern
"C"
Box
*
intNew
(
Box
*
_cls
,
Box
*
val
)
{
extern
"C"
Box
*
intNew
(
Box
*
_cls
,
Box
*
val
,
Box
*
base
)
{
if
(
!
isSubclass
(
_cls
->
cls
,
type_cls
))
raiseExcHelper
(
TypeError
,
"int.__new__(X): X is not a type object (%s)"
,
getTypeName
(
_cls
));
...
...
@@ -863,9 +883,9 @@ extern "C" Box* intNew(Box* _cls, Box* val) {
getNameOfClass
(
cls
));
if
(
cls
==
int_cls
)
return
_intNew
(
val
);
return
_intNew
(
val
,
base
);
BoxedInt
*
n
=
(
BoxedInt
*
)
_intNew
(
val
);
BoxedInt
*
n
=
(
BoxedInt
*
)
_intNew
(
val
,
base
);
if
(
n
->
cls
==
long_cls
)
{
if
(
cls
==
int_cls
)
return
n
;
...
...
@@ -951,8 +971,8 @@ void setupInt() {
int_cls
->
giveAttr
(
"__hex__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
intHex
,
STR
,
1
)));
int_cls
->
giveAttr
(
"__oct__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
intOct
,
STR
,
1
)));
int_cls
->
giveAttr
(
"__new__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
intNew
,
UNKNOWN
,
2
,
1
,
false
,
false
),
{
boxInt
(
0
)
}));
int_cls
->
giveAttr
(
"__new__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
intNew
,
UNKNOWN
,
3
,
2
,
false
,
false
),
{
boxInt
(
0
),
NULL
}));
int_cls
->
giveAttr
(
"__init__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
intInit
,
NONE
,
2
,
1
,
true
,
false
),
{
boxInt
(
0
)
}));
...
...
src/runtime/long.cpp
View file @
01ff3e39
...
...
@@ -90,7 +90,7 @@ extern "C" PY_LONG_LONG PyLong_AsLongLong(PyObject* vv) noexcept {
Py_FatalError
(
"unimplemented"
);
}
extern
"C"
PyObject
*
PyLong_FromString
(
char
*
str
,
char
**
pend
,
int
base
)
noexcept
{
extern
"C"
PyObject
*
PyLong_FromString
(
c
onst
c
har
*
str
,
char
**
pend
,
int
base
)
noexcept
{
Py_FatalError
(
"unimplemented"
);
}
...
...
test/tests/intmethods.py
View file @
01ff3e39
...
...
@@ -62,3 +62,13 @@ class L(object):
print
type
(
int
(
L
()))
print
int
(
u'123'
)
for
b
in
range
(
26
):
try
:
print
int
(
'123'
,
b
)
except
ValueError
as
e
:
print
e
try
:
print
int
(
u'123'
,
b
)
except
ValueError
as
e
:
print
e
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