Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
c7de3cab
Commit
c7de3cab
authored
Apr 06, 2017
by
Michael Seifert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include functions (Python 2.6+) of PyLong_Type
parent
52e58deb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
Cython/Includes/cpython/long.pxd
Cython/Includes/cpython/long.pxd
+35
-0
No files found.
Cython/Includes/cpython/long.pxd
View file @
c7de3cab
...
@@ -30,6 +30,14 @@ cdef extern from "Python.h":
...
@@ -30,6 +30,14 @@ cdef extern from "Python.h":
# Return value: New reference.
# Return value: New reference.
# Return a new PyLongObject object from a C unsigned long, or NULL on failure.
# Return a new PyLongObject object from a C unsigned long, or NULL on failure.
object
PyLong_FromSsize_t
(
Py_ssize_t
v
)
# Return value: New reference.
# Return a new PyLongObject object from a C Py_ssize_t, or NULL on failure.)
object
PyLong_FromSize_t
(
size_t
v
)
# Return value: New reference.
# Return a new PyLongObject object from a C size_t, or NULL on failure.
object
PyLong_FromLongLong
(
PY_LONG_LONG
v
)
object
PyLong_FromLongLong
(
PY_LONG_LONG
v
)
# Return value: New reference.
# Return value: New reference.
# Return a new PyLongObject object from a C long long, or NULL on failure.
# Return a new PyLongObject object from a C long long, or NULL on failure.
...
@@ -64,6 +72,12 @@ cdef extern from "Python.h":
...
@@ -64,6 +72,12 @@ cdef extern from "Python.h":
# range [2, 36]; if it is out of range, ValueError will be
# range [2, 36]; if it is out of range, ValueError will be
# raised.
# raised.
# object PyLong_FromUnicodeObject(object u, int base)
# Convert a sequence of Unicode digits in the string u to a Python integer
# value. The Unicode string is first encoded to a byte string using
# PyUnicode_EncodeDecimal() and then converted using PyLong_FromString().
# New in version 3.3.
object
PyLong_FromVoidPtr
(
void
*
p
)
object
PyLong_FromVoidPtr
(
void
*
p
)
# Return value: New reference.
# Return value: New reference.
# Create a Python integer or long integer from the pointer p. The
# Create a Python integer or long integer from the pointer p. The
...
@@ -75,6 +89,27 @@ cdef extern from "Python.h":
...
@@ -75,6 +89,27 @@ cdef extern from "Python.h":
# Return a C long representation of the contents of pylong. If
# Return a C long representation of the contents of pylong. If
# pylong is greater than LONG_MAX, an OverflowError is raised.
# pylong is greater than LONG_MAX, an OverflowError is raised.
# long PyLong_AsLongAndOverflow(object pylong, int *overflow) except? -1
# Return a C long representation of the contents of pylong. If pylong is
# greater than LONG_MAX or less than LONG_MIN, set *overflow to 1 or -1,
# respectively, and return -1; otherwise, set *overflow to 0. If any other
# exception occurs (for example a TypeError or MemoryError), then -1 will
# be returned and *overflow will be 0.
# New in version 2.7.
# PY_LONG_LONG PyLong_AsLongLongAndOverflow(object pylong, int *overflow) except? -1
# Return a C long long representation of the contents of pylong. If pylong
# is greater than PY_LLONG_MAX or less than PY_LLONG_MIN, set *overflow to
# 1 or -1, respectively, and return -1; otherwise, set *overflow to 0. If
# any other exception occurs (for example a TypeError or MemoryError), then
# -1 will be returned and *overflow will be 0.
# New in version 2.7.
Py_ssize_t
PyLong_AsSsize_t
(
object
pylong
)
except
?
-
1
# Return a C Py_ssize_t representation of the contents of pylong. If pylong
# is greater than PY_SSIZE_T_MAX, an OverflowError is raised and -1 will be
# returned.
unsigned
long
PyLong_AsUnsignedLong
(
object
pylong
)
except
?
-
1
unsigned
long
PyLong_AsUnsignedLong
(
object
pylong
)
except
?
-
1
# Return a C unsigned long representation of the contents of
# Return a C unsigned long representation of the contents of
# pylong. If pylong is greater than ULONG_MAX, an OverflowError is
# pylong. If pylong is greater than ULONG_MAX, an OverflowError is
...
...
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