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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
pygolang
Commits
8424abe0
Commit
8424abe0
authored
Oct 30, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pygolang v0.0.0.dev5
parent
5146eb0b
Changes
2
Show 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
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)
0.0.0.dev4 (2018-07-04)
-----------------------
-----------------------
...
...
setup.py
View file @
8424abe0
...
@@ -8,7 +8,7 @@ def readfile(path):
...
@@ -8,7 +8,7 @@ def readfile(path):
setup
(
setup
(
name
=
'pygolang'
,
name
=
'pygolang'
,
version
=
'0.0.0.dev
4
'
,
version
=
'0.0.0.dev
5
'
,
description
=
'Go-like features for Python'
,
description
=
'Go-like features for Python'
,
long_description
=
'%s
\
n
----
\
n
\
n
%s'
%
(
long_description
=
'%s
\
n
----
\
n
\
n
%s'
%
(
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG.rst'
)),
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG.rst'
)),
...
...
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