-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
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
FakePipeWrapper.read shouldn't require numBytes #661
Labels
Comments
Thanks, you are right. |
mrbean-bremen
added a commit
to mrbean-bremen/pyfakefs
that referenced
this issue
Jan 28, 2022
- make numBytes argument optional - open real pipe as file and store it if needed - fixes pytest-dev#661
mrbean-bremen
added a commit
that referenced
this issue
Jan 28, 2022
- make numBytes argument optional - open real pipe as file and store it if needed - fixes #661
@gsnedders - shall be fixed in master, please check. |
github-actions bot
pushed a commit
that referenced
this issue
Jan 28, 2022
…ent optional - open real pipe as file and store it if needed - fixes #661
@gsnedders - did you have the time to test this yet? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Clearly, the stdlib pipe object has the pipe implementing the "normal" IO interface where numBytes is an optional argument, whereas for
FakePipeWrapper
it is a required argument.The text was updated successfully, but these errors were encountered: