Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Levin Zimmermann
pygolang
Commits
8424abe0
Unverified
Commit
8424abe0
authored
6 years ago
by
Kirill Smelkov
Browse files
Options
Download
Email Patches
Plain Diff
pygolang v0.0.0.dev5
parent
5146eb0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
CHANGELOG.rst
CHANGELOG.rst
+27
-0
setup.py
setup.py
+1
-1
No files found.
CHANGELOG.rst
View file @
8424abe0
Pygolang change history
=======================
0.0.0.dev5 (2018-10-30)
-----------------------
- Fix `select` bug that was causing several cases to be potentially executed
at the same time (`commit 1`__, 2__, 3__).
__ https://lab.nexedi.com/kirr/pygolang/commit/f0b592b4
__ https://lab.nexedi.com/kirr/pygolang/commit/b51b8d5d
__ https://lab.nexedi.com/kirr/pygolang/commit/2fc6797c
- Add `defer` and `recover` (commit__).
The implementation is partly inspired by work of Denis Kolodin (1__, 2__).
__ https://lab.nexedi.com/kirr/pygolang/commit/5146eb0b
__ https://habr.com/post/191786
__ https://stackoverflow.com/a/43028386/9456786
- Fix `@method` on Python3 (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/ab69e0fa
- A leaked goroutine no longer prevents whole program to exit (`commit 1`__, 2__).
__ https://lab.nexedi.com/kirr/pygolang/commit/69cef96e
__ https://lab.nexedi.com/kirr/pygolang/commit/ec929991
0.0.0.dev4 (2018-07-04)
-----------------------
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
8424abe0
...
...
@@ -8,7 +8,7 @@ def readfile(path):
setup
(
name
=
'pygolang'
,
version
=
'0.0.0.dev
4
'
,
version
=
'0.0.0.dev
5
'
,
description
=
'Go-like features for Python'
,
long_description
=
'%s
\n
----
\n\n
%s'
%
(
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG.rst'
)),
...
...
This diff is collapsed.
Click to expand it.
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