You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is this PR for? SFTPHandle.closed is already a public attribute.
The cdef bint closed attribute does not seem to be visible on the Python side, preventing certain usages of an SFTPHandle as file. Also apparently cpdef does not support bint attribute.
What is this PR for? SFTPHandle.closed is already a public attribute.
The cdef bint closed attribute does not seem to be visible on the Python side, preventing certain usages of an SFTPHandle as file. Also apparently cpdef does not support bint attribute, hence the need for property wrappers. Am I overlooking something?
The cdef bint closed attribute does not seem to be visible on the Python side, preventing certain usages of an SFTPHandle as file.
Is there some example code that is not working or causing errors I can look at?
Edit - here:
from ssh2.sftp_handle import SFTPHandle
hh = SFTPHandle(None)
hh.closed
Traceback (most recent call last):
File "<python-input-6>", line 1, in <module>
hh.closed
AttributeError: 'ssh2.sftp_handle.SFTPHandle' object has no attribute 'closed'. Did you mean: 'close'?
This needs added as a test to check the changes work. Changes look good otherwise.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
None yet
2 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
io.IOBase.closed