Skip to content

Commit caabd46

Browse files
committed
Typos fixed, Release prepared
1 parent db1e1a8 commit caabd46

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Job(name, workdir=None, args=(), timeout=0, rsrtonto=False, task=None #,*
186186
ATTENTION: PIPE is a buffer in RAM, so do not use it if the output data is huge or unlimited.
187187
The path is interpreted in the CONTEXT of the CALLER
188188
poutlog: str - file name to log non-empty piped stdout pre-pended with the timestamp. Actual only if stdout is PIPE.
189-
perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stdout is PIPE.
189+
perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stderr is PIPE.
190190
191191
Scheduling parameters:
192192
omitafn - omit affinity policy of the scheduler, which is actual when the affinity is enabled

mpepool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ def __init__(self, name, workdir=None, args=(), timeout=0, rsrtonto=False, task=
903903
ATTENTION: PIPE is a buffer in RAM, so do not use it if the output data is huge or unlimited.
904904
The path is interpreted in the CALLER CONTEXT
905905
poutlog: str - file name to log non-empty piped stdout pre-pended with the timestamp. Actual only if stdout is PIPE.
906-
perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stdout is PIPE.
906+
perrlog: str - file name to log non-empty piped stderr pre-pended with the timestamp. Actual only if stderr is PIPE.
907907
908908
Scheduling parameters:
909909
omitafn - omit affinity policy of the scheduler, which is actual when the affinity is enabled

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name=pkgname, # This is the name of your PyPI-package.
20-
version='3.2.0', # Update the version number for new releases
20+
version='3.2.1', # Update the version number for new releases
2121
description=('A lightweight multi-process Execution Pool with load balancing'
2222
' and customizable resource consumption constraints.'), # Required, "Summary" metadata field
2323
long_description=(
@@ -27,7 +27,7 @@
2727
'All main functionality is implemented as a single-file module to be easily'
2828
' included into your project and customized as a part of your distribution '
2929
'(like in [PyCaBeM](https://github.com/eXascaleInfolab/PyCABeM) to execute'
30-
' muliple apps in parralel on the dedicated CPU cores and avoiding their'
30+
' multiple apps in parallel on the dedicated CPU cores and avoiding their'
3131
' swapping from the main memory), also it can be installed as a library.'
3232
' An optional minimalistic Web interface is provided in the separate module'
3333
' to inspect the load balancer and execution pool.'

0 commit comments

Comments
 (0)