Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
9bbd7a8a
Commit
9bbd7a8a
authored
Aug 24, 2012
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python: add __version__
parent
dcba568f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
python/setup.py
python/setup.py
+1
-0
python/spdylay.pyx
python/spdylay.pyx
+3
-0
No files found.
python/setup.py
View file @
9bbd7a8a
...
@@ -3,6 +3,7 @@ from distutils.extension import Extension
...
@@ -3,6 +3,7 @@ from distutils.extension import Extension
setup
(
setup
(
name
=
'python-spdylay'
,
name
=
'python-spdylay'
,
# Also update __version__ in spdylay.pyx
version
=
'0.1.0'
,
version
=
'0.1.0'
,
description
=
'SPDY library'
,
description
=
'SPDY library'
,
author
=
'Tatsuhiro Tsujikawa'
,
author
=
'Tatsuhiro Tsujikawa'
,
...
...
python/spdylay.pyx
View file @
9bbd7a8a
...
@@ -4,6 +4,9 @@ from libc.stdlib cimport malloc, free
...
@@ -4,6 +4,9 @@ from libc.stdlib cimport malloc, free
from
libc.string
cimport
memcpy
,
memset
from
libc.string
cimport
memcpy
,
memset
from
libc.stdint
cimport
uint8_t
,
uint16_t
,
uint32_t
,
int32_t
from
libc.stdint
cimport
uint8_t
,
uint16_t
,
uint32_t
,
int32_t
# Also update version in setup.py
__version__
=
'0.1.0'
class
EOFError
(
Exception
):
class
EOFError
(
Exception
):
pass
pass
...
...
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