Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
pygolang
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
Carlos Ramos Carreño
pygolang
Commits
0f60aa77
Commit
0f60aa77
authored
Mar 24, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pygolang v0.0.0.dev8
parent
704d99f0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
5 deletions
+26
-5
CHANGELOG.rst
CHANGELOG.rst
+21
-0
README.rst
README.rst
+3
-3
golang/__init__.py
golang/__init__.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
CHANGELOG.rst
View file @
0f60aa77
Pygolang change history
=======================
0.0.0.dev8 (2019-03-24)
-----------------------
- Fix `gpython` to properly initialize `sys.path` (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/6b4990f6
- Fix channel tests to pass irregardless of surround OS load (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/731f39e3
- Deprecate `@method(cls)` in favour of `@func(cls)` (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/942ee900
- Support both `PyPy2` and `PyPy3` (`commit 1`__, 2__, 3__).
__ https://lab.nexedi.com/kirr/pygolang/commit/da68a8ae
__ https://lab.nexedi.com/kirr/pygolang/commit/e847c550
__ https://lab.nexedi.com/kirr/pygolang/commit/704d99f0
0.0.0.dev7 (2019-01-16)
-----------------------
...
...
README.rst
View file @
0f60aa77
...
...
@@ -26,9 +26,9 @@ via tight integration with gevent__. The standard library of GPython is API
compatible with Python standard library, but inplace of OS threads lightweight
coroutines are provided, and IO is internally organized via
libuv__/libev__-based IO scheduler. Consequently programs can spawn lots of
coroutines cheaply, and modules like `time`, `socket`, `ssl`, `subprocess` etc
all could be used from all coroutines simultaneously, in the same blocking way
as if every coroutine was a full OS thread. This gives ability to scale
server
s
coroutines cheaply, and modules like `time`, `socket`, `ssl`, `subprocess` etc
-
all could be used from all coroutines simultaneously,
and
in the same blocking way
as if every coroutine was a full OS thread. This gives ability to scale
program
s
without changing concurrency model and existing code.
__ http://www.gevent.org/
...
...
golang/__init__.py
View file @
0f60aa77
...
...
@@ -28,7 +28,7 @@
...
"""
__version__
=
"0.0.0.dev
7
"
__version__
=
"0.0.0.dev
8
"
__all__
=
[
'method'
,
'go'
,
'chan'
,
'select'
,
'default'
,
'defer'
,
'panic'
,
'recover'
,
'func'
,
'gimport'
]
...
...
setup.py
View file @
0f60aa77
...
...
@@ -149,7 +149,7 @@ setup(
author
=
'Kirill Smelkov'
,
author_email
=
'kirr@nexedi.com'
,
keywords
=
'go
channel goroutine GOPATH python impor
t'
,
keywords
=
'go
lang go channel goroutine concurrency GOPATH python import gpython geven
t'
,
packages
=
find_packages
(),
include_package_data
=
True
,
...
...
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