We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by kwhitefo, Sep 21, 2010
What steps will reproduce the problem?
python-csp/csp/builtins.py
GenerateFloats
@forever def GenerateFloats(outchan, increment=0.1): """ readset = writeset = """ counter = 0 while True: outchan.write(counter * epsilon) counter += 1 yield
epsilon should be increment.
epsilon
There is also a bug in guards.py: __doc__ is not writeable on the last line:
guards.py
__doc__
Barrier.__doc__ = """ """
I'm using python 2.6:
whitefoot@elektra:~/python-csp/python-csp$ python Python 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] on linux2 on Xubuntu: whitefoot@elektra:~/python-csp/python-csp$ cat /proc/version Linux version 2.6.31-22-generic (buildd@roseapple) (gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9) ) #65-Ubuntu SMP Thu Sep 16 15:48:58 UTC 2010
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reported by kwhitefo, Sep 21, 2010
What steps will reproduce the problem?
python-csp/csp/builtins.py
GenerateFloats
function:epsilon
should be increment.There is also a bug in
guards.py
:__doc__
is not writeable on the last line:I'm using python 2.6:
The text was updated successfully, but these errors were encountered: