Commit fa9dd0d0 authored by Kirill Smelkov's avatar Kirill Smelkov

*: Docstring cosmetics (slight)

parent 21525a8d
......@@ -17,7 +17,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""Package golang provides Go-like features for Python
"""Package golang provides Go-like features for Python.
- `go` spawns lightweight thread.
- `chan` and `select` provide channels with Go semantic.
......@@ -25,7 +25,7 @@
- `defer` allows to schedule a cleanup from the main control flow.
- `gimport` allows to import python modules by full path in a Go workspace.
...
See README for thorough overview.
"""
from __future__ import print_function, absolute_import
......
......@@ -17,7 +17,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""Package gcompat provides Go-compatibility layer for Python"""
"""Package gcompat provides Go-compatibility layer for Python."""
from __future__ import print_function, absolute_import
......
......@@ -17,7 +17,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""Package strconv provides Go-compatible string conversions"""
"""Package strconv provides Go-compatible string conversions."""
from __future__ import print_function, absolute_import
......
......@@ -17,7 +17,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""Package testing mirrors Go testing package for things missed in Python"""
"""Package testing mirrors Go testing package for things missed in Python."""
from __future__ import print_function, absolute_import
......
......@@ -17,7 +17,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""This program tests that leaked goroutines don't prevent program to exit"""
"""This program tests that leaked goroutines don't prevent program to exit."""
from __future__ import print_function, absolute_import
......
......@@ -18,7 +18,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""benchlib - module to load & work with data in Go benchmark format
"""benchlib - module to load & work with data in Go benchmark format.
https://github.com/golang/proposal/blob/master/design/14313-benchmark-format.md
"""
......
......@@ -18,7 +18,7 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""gpython ... - run python ... with gevent & golang activated
"""gpython ... - run python ... with gevent & golang activated.
gpython is substitute for standard python interpreter with the following
differences:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment