-
Notifications
You must be signed in to change notification settings - Fork 12
Rewind file pointer and be compatible with 3.13.13 #84
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,7 @@ def test_vmtar() -> None: | |
| # The test file has no textPgs/fixUpPgs | ||
| assert all(member.is_visor for member in members.values()) | ||
| assert set(members.keys()) == { | ||
| "test", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reviewer: The directory should also be a member, right?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would think it should also be included, and not only the file contents. @Schamper was there a reason it wasn't included?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably oversight because I didn't rewind the file pointer :) should be included. |
||
| "test/file1", | ||
| "test/file2", | ||
| "test/file3", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't it now technically call the
_init_visor_attrstwice? assuper().frombufcallscls._frombufwhich already initiates_init_visor_attrs?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, but
_init_visor_attrsis idempotent