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
3be12a03
Commit
3be12a03
authored
Jul 07, 2021
by
Jason Madden
Committed by
GitHub
Jul 07, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1803 from gevent/cython3.0a8
Update to Cython 3.0a8.
parents
c780319e
1aea6bc0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
10 deletions
+11
-10
docs/changes/1801.feature
docs/changes/1801.feature
+1
-0
pyproject.toml
pyproject.toml
+1
-1
src/gevent/_gevent_c_tracer.pxd
src/gevent/_gevent_c_tracer.pxd
+8
-8
src/gevent/_gevent_cgreenlet.pxd
src/gevent/_gevent_cgreenlet.pxd
+1
-1
No files found.
docs/changes/1801.feature
0 → 100644
View file @
3be12a03
Update
from
Cython
3.0a6
to
3.0a8.
pyproject.toml
View file @
3be12a03
...
...
@@ -21,7 +21,7 @@ requires = [
# failing in Python 2 (https://travis-ci.org/github/gevent/gevent/jobs/683782800);
# This was fixed in 3.0a5 (https://github.com/cython/cython/issues/3578)
# 3.0a6 fixes an issue cythonizing source on 32-bit platforms
"Cython >= 3.0a
6
"
,
"Cython >= 3.0a
8
"
,
# See version requirements in setup.py
"cffi >= 1.12.3 ; platform_python_implementation == 'CPython'"
,
# Python 3.7 requires at least 0.4.14, which is ABI incompatible with earlier
...
...
src/gevent/_gevent_c_tracer.pxd
View file @
3be12a03
...
...
@@ -13,9 +13,9 @@ cdef gmctime
cdef
class
GreenletTracer
:
c
p
def
readonly
object
active_greenlet
c
p
def
readonly
object
previous_trace_function
c
p
def
readonly
Py_ssize_t
greenlet_switch_counter
cdef
readonly
object
active_greenlet
cdef
readonly
object
previous_trace_function
cdef
readonly
Py_ssize_t
greenlet_switch_counter
cdef
bint
_killed
...
...
@@ -28,16 +28,16 @@ cdef class GreenletTracer:
@
cython
.
internal
cdef
class
_HubTracer
(
GreenletTracer
):
c
p
def
readonly
object
hub
c
p
def
readonly
double
max_blocking_time
cdef
readonly
object
hub
cdef
readonly
double
max_blocking_time
cdef
class
HubSwitchTracer
(
_HubTracer
):
c
p
def
readonly
double
last_entered_hub
cdef
readonly
double
last_entered_hub
cdef
class
MaxSwitchTracer
(
_HubTracer
):
c
p
def
readonly
double
max_blocking
c
p
def
readonly
double
last_switch
cdef
readonly
double
max_blocking
cdef
readonly
double
last_switch
@
cython
.
locals
(
switched_at
=
double
)
cpdef
_trace
(
self
,
str
event
,
tuple
args
)
src/gevent/_gevent_cgreenlet.pxd
View file @
3be12a03
...
...
@@ -179,7 +179,7 @@ cdef Waiter
cdef
wait
cdef
iwait
cdef
reraise
c
p
def
GEVENT_CONFIG
cdef
GEVENT_CONFIG
@
cython
.
final
...
...
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