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
Gwenaël Samain
cython
Commits
809008a6
Commit
809008a6
authored
Aug 21, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new python_version.pxd for the Python C compile time version
parent
a7daacc4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
Cython/Includes/python.pxd
Cython/Includes/python.pxd
+1
-0
Cython/Includes/python_version.pxd
Cython/Includes/python_version.pxd
+32
-0
No files found.
Cython/Includes/python.pxd
View file @
809008a6
...
...
@@ -117,6 +117,7 @@
#
#################################################################
from
python_version
cimport
*
from
python_ref
cimport
*
from
python_exc
cimport
*
from
python_module
cimport
*
...
...
Cython/Includes/python_version.pxd
0 → 100644
View file @
809008a6
# Python version constants
#
# It's better to evaluate these at runtime (i.e. C compile time) using
#
# if PY_MAJOR_VERSION >= 3:
# do_stuff_in_Py3_0_and_later()
# if PY_VERSION_HEX >= 0x02050000:
# do_stuff_in_Py2_5_and_later()
#
# than using the IF/DEF statements, which are evaluated at Cython
# compile time. This will keep your C code portable.
cdef
extern
from
*
:
# the complete version, e.g. 0x010502B2 == 1.5.2b2
int
PY_VERSION_HEX
# the individual sections as plain numbers
int
PY_MAJOR_VERSION
int
PY_MINOR_VERSION
int
PY_MICRO_VERSION
int
PY_RELEASE_LEVEL
int
PY_RELEASE_SERIAL
# Note: PY_RELEASE_LEVEL is one of
# 0xA (alpha)
# 0xB (beta)
# 0xC (release candidate)
# 0xF (final)
char
[]
PY_VERSION
char
[]
PY_PATCHLEVEL_REVISION
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