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
Levin Zimmermann
pygolang
Commits
6d9c27b1
Commit
6d9c27b1
authored
May 09, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pygolang v0.0.1
parent
9ee7ba91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
CHANGELOG.rst
CHANGELOG.rst
+23
-0
golang/__init__.py
golang/__init__.py
+1
-1
No files found.
CHANGELOG.rst
View file @
6d9c27b1
Pygolang change history
=======================
0.0.1 (2019-05-09)
------------------
- Add support for nil channels (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/2aad64bb
- Add `context` package to propagate cancellation and task-scoped values among
spawned goroutines (commit__, `overview`__).
__ https://lab.nexedi.com/kirr/pygolang/commit/e9567c7b
__ https://blog.golang.org/context
- Add `sync` package with `sync.WorkGroup` to spawn group of goroutines working
on a common task (`commit 1`__, 2__).
__ https://lab.nexedi.com/kirr/pygolang/commit/e6bea2cf
__ https://lab.nexedi.com/kirr/pygolang/commit/9ee7ba91
- Kill deprecated `@method` (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/262f8986
0.0.0.dev8 (2019-03-24)
-----------------------
...
...
golang/__init__.py
View file @
6d9c27b1
...
...
@@ -28,7 +28,7 @@
...
"""
__version__
=
"0.0.
0.dev8
"
__version__
=
"0.0.
1
"
__all__
=
[
'go'
,
'chan'
,
'select'
,
'default'
,
'nilchan'
,
'defer'
,
'panic'
,
'recover'
,
'func'
,
'gimport'
]
...
...
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