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
65393676
Commit
65393676
authored
Jan 18, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merge 0.22.x branch into master
parents
88915c0d
75079c92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
CHANGES.rst
CHANGES.rst
+10
-0
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+4
-3
Cython/Shadow.py
Cython/Shadow.py
+1
-1
No files found.
CHANGES.rst
View file @
65393676
...
...
@@ -5,6 +5,10 @@ Cython Changelog
Latest changes
==============
0.22.0 (2015-01-??)
===================
Features added
--------------
...
...
@@ -39,6 +43,12 @@ Bugs fixed
Other changes
-------------
* Preliminary support for defining the Cython language with a formal grammar.
To try parsing your files against this grammar, use the --formal_grammar directive.
Experimental.
* ``_`` is no longer considered a cacheable builtin as it could interfere with gettext.
0.21.2 (2014-12-27)
===================
...
...
Cython/Compiler/Code.py
View file @
65393676
...
...
@@ -50,14 +50,15 @@ non_portable_builtins_map = {
basicsize_builtins_map
=
{
# builtins whose type has a different tp_basicsize than sizeof(...)
'PyTypeObject'
:
'PyHeapTypeObject'
,
}
'PyTypeObject'
:
'PyHeapTypeObject'
,
}
uncachable_builtins
=
[
# builtin names that cannot be cached because they may or may not
# be available at import time
'WindowsError'
,
]
'_'
,
# e.g. gettext
]
modifier_output_mapper
=
{
'inline'
:
'CYTHON_INLINE'
...
...
Cython/Shadow.py
View file @
65393676
# cython.* namespace for pure mode.
__version__
=
"0.22
pre
"
__version__
=
"0.22
.alpha0
"
# BEGIN shameless copy from Cython/minivect/minitypes.py
...
...
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