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
73ed53c9
Commit
73ed53c9
authored
Jul 23, 2011
by
Mark Florisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move buffer utilities, fix manifest and package data for utilities
parent
2599deb2
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
539 additions
and
530 deletions
+539
-530
Cython/Compiler/Buffer.py
Cython/Compiler/Buffer.py
+9
-522
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+7
-6
Cython/Utility/Buffer.c
Cython/Utility/Buffer.c
+521
-0
MANIFEST.in
MANIFEST.in
+1
-1
setup.py
setup.py
+1
-1
No files found.
Cython/Compiler/Buffer.py
View file @
73ed53c9
This diff is collapsed.
Click to expand it.
Cython/Compiler/Code.py
View file @
73ed53c9
...
...
@@ -61,10 +61,10 @@ class UtilityCodeBase(object):
if
utility
:
if
cls
.
is_cython_utility
:
# Don't forget our line number
code
=
'
\
n
'
*
begin_lineno
+
''
.
join
(
lines
)
code
=
''
*
begin_lineno
+
''
.
join
(
lines
)
else
:
# line numbers are not important here
code
=
'
\
n
'
.
join
(
lines
)
code
=
''
.
join
(
lines
)
if
type
==
'Proto'
:
utility
[
0
]
=
code
...
...
@@ -87,7 +87,7 @@ class UtilityCodeBase(object):
else
:
comment
=
'/'
regex
=
r'%s{5,
20}\
s*((
\w|\
.)+)
\s*%s{5,2
0}'
%
(
comment
,
comment
)
regex
=
r'%s{5,
30}\
s*((
\w|\
.)+)
\s*%s{5,3
0}'
%
(
comment
,
comment
)
utilities
=
{}
lines
=
[]
...
...
@@ -141,11 +141,12 @@ class UtilityCodeBase(object):
Utilities in the file can be specified as follows:
#
UtilityProto: name
#
UtilityImpl: name
#
#### MyUtility.proto #####
#
#### MyUtility #####
for prototypes and implementation respectively. For non-python or
-cython files a // comment should be used instead.
-cython files /-es should be used instead. 5 to 30 pound signs may be
used on either side.
If context is given, the utility is considered a tempita template.
The context dict (which may be empty) will be unpacked to form
...
...
Cython/Utility/Buffer.c
0 → 100644
View file @
73ed53c9
This diff is collapsed.
Click to expand it.
MANIFEST.in
View file @
73ed53c9
...
...
@@ -18,7 +18,7 @@ include Demos/freeze/*
include Demos/libraries/*
include Demos/Makefile*
recursive-include Cython/Debugger/Tests *.pyx *.pxd *.c *.h
recursive-include Cython/Utility *.pyx *.pxd *.c *.h
recursive-include Cython/Utility *.pyx *.pxd *.c *.h
.cpp
recursive-include Tools *
recursive-include tests *.pyx *.pxd *.pxi *.py *.h *.BROKEN bugs.txt
recursive-include tests *_lib.cpp *.srctree
...
...
setup.py
View file @
73ed53c9
...
...
@@ -63,7 +63,7 @@ else:
'Cython.Plex'
:
[
'*.pxd'
],
'Cython.Compiler'
:
[
'*.pxd'
],
'Cython.Runtime'
:
[
'*.pyx'
,
'*.pxd'
],
'Cython.Utility'
:
[
'*.pyx'
,
'*.pxd'
,
'*.c'
,
'*.h'
],
'Cython.Utility'
:
[
'*.pyx'
,
'*.pxd'
,
'*.c'
,
'*.h'
,
'.cpp'
],
'Cython'
:
[
p
[
7
:]
for
p
in
pxd_include_patterns
],
}
...
...
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