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
75443f64
Commit
75443f64
authored
Jul 02, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pygolang v0.0.0.dev3
parent
622ccd82
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
3 deletions
+40
-3
CHANGELOG.rst
CHANGELOG.rst
+36
-0
MANIFEST.in
MANIFEST.in
+1
-1
setup.py
setup.py
+3
-2
No files found.
CHANGELOG.rst
0 → 100644
View file @
75443f64
Pygolang change history
=======================
0.0.0.dev3 (2018-07-02)
-----------------------
- Support both Python2 and Python3; `qq` now does not escape printable UTF-8
characters. (`commit 1`__, 2__, 3__).
__ https://lab.nexedi.com/kirr/pygolang/commit/02dddb97
__ https://lab.nexedi.com/kirr/pygolang/commit/e01e5c2f
__ https://lab.nexedi.com/kirr/pygolang/commit/622ccd82
- `golang/x/perf/benchlib:` New module to load & work with data in Go benchmark
format (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/812e7ed7
0.0.0.dev2 (2018-06-20)
-----------------------
- Turn into full pygolang: `go`, `chan`, `select`, `method` and `gcompat.qq`
are provided in addition to `gimport` (commit__). The implementation is
not very fast, but should be working correctly including `select` - `select`
sends for synchronous channels.
__ https://lab.nexedi.com/kirr/pygolang/commit/afa46cf5
0.0.0.dev1 (2018-05-21)
-----------------------
- Initial release; `gimport` functionality only (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/9c61f254
MANIFEST.in
View file @
75443f64
include tox.ini
include
CHANGELOG.rst
tox.ini
recursive-include golang/testdata *.py
setup.py
View file @
75443f64
...
...
@@ -8,9 +8,10 @@ def readfile(path):
setup
(
name
=
'pygolang'
,
version
=
'0.0.0.dev
2
'
,
version
=
'0.0.0.dev
3
'
,
description
=
'Go-like features for Python'
,
long_description
=
readfile
(
'README.rst'
),
long_description
=
'%s
\
n
----
\
n
\
n
%s'
%
(
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG.rst'
)),
url
=
'https://lab.nexedi.com/kirr/pygolang'
,
license
=
'GPLv3+ with wide exception for Open-Source'
,
author
=
'Kirill Smelkov'
,
...
...
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