Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
gevent
Commits
80d3b160
Commit
80d3b160
authored
Jan 23, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename corecext.ppyx to just corecext.pyx now that we don't preprocess.
parent
9c96233d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
6 deletions
+4
-6
.gitignore
.gitignore
+0
-1
CHANGES.rst
CHANGES.rst
+1
-1
Makefile
Makefile
+2
-3
appveyor/make.cmd
appveyor/make.cmd
+1
-1
src/gevent/libev/corecext.pyx
src/gevent/libev/corecext.pyx
+0
-0
No files found.
.gitignore
View file @
80d3b160
...
...
@@ -6,7 +6,6 @@ build/
*.o
*.egg-info
gevent.*.[ch]
src/gevent/libev/corecext.pyx
src/gevent/__pycache__
src/gevent/libev/_corecffi.c
src/gevent/libev/_corecffi.o
...
...
CHANGES.rst
View file @
80d3b160
...
...
@@ -249,7 +249,7 @@ libev
- The C extension has been updated to use more modern Cython idioms
and generate less code for simplicity, faster compilation and better
cache usage.
cache usage.
See :pr:`1077`.
- Watcher objects may be slightly larger. On a 64-bit platform, a
typical watcher may be 16 bytes (2 pointers) larger. This is
...
...
Makefile
View file @
80d3b160
...
...
@@ -14,8 +14,8 @@ export LC_ALL=C.UTF-8
all
:
src/gevent/libev/gevent.corecext.c src/gevent/gevent.ares.c src/gevent/gevent._semaphore.c src/gevent/gevent._local.c
src/gevent/libev/gevent.corecext.c
:
src/gevent/libev/corecext.p
p
yx src/gevent/libev/libev.pxd src/gevent/libev/libev.h
$(CYTHON)
-o
gevent.corecext.c src/gevent/libev/corecext.p
p
yx
src/gevent/libev/gevent.corecext.c
:
src/gevent/libev/corecext.pyx src/gevent/libev/libev.pxd src/gevent/libev/libev.h
$(CYTHON)
-o
gevent.corecext.c src/gevent/libev/corecext.pyx
echo
'#include "callbacks.c"'
>>
gevent.corecext.c
mv
gevent.corecext.
*
src/gevent/libev/
...
...
@@ -40,7 +40,6 @@ src/gevent/gevent._local.c: src/gevent/local.py
clean
:
rm
-f
corecext.pyx src/gevent/libev/corecext.pyx
rm
-f
gevent.corecext.c gevent.corecext.h src/gevent/libev/gevent.corecext.c src/gevent/libev/gevent.corecext.h
rm
-f
gevent.ares.c gevent.ares.h src/gevent/gevent.ares.c src/gevent/gevent.ares.h
rm
-f
gevent._semaphore.c gevent._semaphore.h src/gevent/gevent._semaphore.c src/gevent/gevent._semaphore.h
...
...
appveyor/make.cmd
View file @
80d3b160
IF
"
%PYTHON_EXE%
"
==
"python"
(
cython
-o
gevent
.corecext.c
src
\gevent\libev\corecext.p
p
yx
cython
-o
gevent
.corecext.c
src
\gevent\libev\corecext.pyx
type
src
\gevent\libev\callbacks.c
>>
gevent
.corecext.c
move
gevent
.corecext.
*
src
\gevent\libev
)
...
...
src/gevent/libev/corecext.p
p
yx
→
src/gevent/libev/corecext.pyx
View file @
80d3b160
File moved
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