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
73fdea50
Commit
73fdea50
authored
Sep 22, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pygolang v0.0.7
parent
fb98e594
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
3 deletions
+72
-3
CHANGELOG.rst
CHANGELOG.rst
+68
-0
golang/__init__.py
golang/__init__.py
+1
-1
setup.py
setup.py
+3
-2
No files found.
CHANGELOG.rst
View file @
73fdea50
Pygolang
change
history
Pygolang
change
history
-----------------------
-----------------------
0.0.7
(
2020
-
09
-
22
)
~~~~~~~~~~~~~~~~~~
-
Add
way
to
run
`
gpython
`
with
either
gevent
or
threads
runtime
.
This
allows
`
gpython
`
usage
without
forcing
projects
to
switch
from
threads
to
greenlets
(`
commit
1
`
__
,
2
__
,
3
__
).
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
0e3
da017
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
c0282565
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
a6b993c8
-
Fix
`
gpython
`
to
be
more
compatible
with
CPython
on
command
line
handling
(`
commit
1
`
__
,
2
__
,
3
__
,
4
__
,
5
__
,
6
__
,
7
__
).
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
e6714e49
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
70
c4c82f
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
b47edf42
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
a0016938
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
51925488
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
1f6f31
cd
__
https
://
lab
.
nexedi
.
com
/
nexedi
/
pygolang
/
commit
/
fb98e594
-
Teach
`
qq
`
to
be
usable
with
both
`
bytes
`
and
`
str
`
format
whatever
type
`
qq
`
's argument is (`commit 1`__, 2__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/85a1765d
__ https://lab.nexedi.com/nexedi/pygolang/commit/edc7aaab
- Teach `recover` to always return exception with `.__traceback__` set even on
Python2 (commit__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/cfcc6db2
- Fix `pyx.build` for develop install (commit__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/34b9c0cf
- Fix `pyx.build` on macOS (commit__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/fb662979
- Add tests for IPython and Pytest integration patches (`commit 1`__,
2__, 3__, 4__, 5__, 6__, 7__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/0148cb89
__ https://lab.nexedi.com/nexedi/pygolang/commit/2413b5ba
__ https://lab.nexedi.com/nexedi/pygolang/commit/42ab98a6
__ https://lab.nexedi.com/nexedi/pygolang/commit/09629367
__ https://lab.nexedi.com/nexedi/pygolang/commit/6e31304d
__ https://lab.nexedi.com/nexedi/pygolang/commit/b938af8b
__ https://lab.nexedi.com/nexedi/pygolang/commit/a1ac2a45
- Add support for Python38 (`commit 1`__, 2__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/792cbd6c
__ https://lab.nexedi.com/nexedi/pygolang/commit/1f184095
- Fix ThreadSanitizer/AddressSanitizer support on upcoming Debian 11 (commit__).
__ https://lab.nexedi.com/nexedi/pygolang/commit/49bb8dcd
| |_| |_| |_| |_| |_| |_| |_| |_| *By this release Pygolang was included into* |Nexedi Software Stack|_.
.. |Nexedi Software Stack| replace:: *Nexedi Software Stack*
.. _Nexedi Software Stack: https://stack.nexedi.com
0.0.6 (2020-02-28)
0.0.6 (2020-02-28)
~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~
...
...
golang/__init__.py
View file @
73fdea50
...
@@ -33,7 +33,7 @@ See also package golang.pyx which provides similar functionality for Cython nogi
...
@@ -33,7 +33,7 @@ See also package golang.pyx which provides similar functionality for Cython nogi
from
__future__
import
print_function
,
absolute_import
from
__future__
import
print_function
,
absolute_import
__version__
=
"0.0.
6.post2
"
__version__
=
"0.0.
7
"
__all__
=
[
'go'
,
'chan'
,
'select'
,
'default'
,
'nilchan'
,
'defer'
,
'panic'
,
__all__
=
[
'go'
,
'chan'
,
'select'
,
'default'
,
'nilchan'
,
'defer'
,
'panic'
,
'recover'
,
'func'
,
'error'
,
'b'
,
'u'
,
'gimport'
]
'recover'
,
'func'
,
'error'
,
'b'
,
'u'
,
'gimport'
]
...
...
setup.py
View file @
73fdea50
...
@@ -181,7 +181,7 @@ setup(
...
@@ -181,7 +181,7 @@ setup(
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'
)),
long_description_content_type
=
'text/x-rst'
,
long_description_content_type
=
'text/x-rst'
,
url
=
'https://
lab.nexedi.com/nexedi/pygolang
'
,
url
=
'https://
pygolang.nexedi.com
'
,
project_urls
=
{
project_urls
=
{
'Bug Tracker'
:
'https://lab.nexedi.com/nexedi/pygolang/issues'
,
'Bug Tracker'
:
'https://lab.nexedi.com/nexedi/pygolang/issues'
,
'Source Code'
:
'https://lab.nexedi.com/nexedi/pygolang'
,
'Source Code'
:
'https://lab.nexedi.com/nexedi/pygolang'
,
...
@@ -316,7 +316,7 @@ setup(
...
@@ -316,7 +316,7 @@ setup(
},
},
classifiers
=
[
_
.
strip
()
for
_
in
"""
\
classifiers
=
[
_
.
strip
()
for
_
in
"""
\
Development Status ::
3 - Alph
a
Development Status ::
4 - Bet
a
Intended Audience :: Developers
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python
Programming Language :: Cython
Programming Language :: Cython
...
@@ -326,6 +326,7 @@ setup(
...
@@ -326,6 +326,7 @@ setup(
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Interpreters
Topic :: Software Development :: Interpreters
...
...
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