-
-
Notifications
You must be signed in to change notification settings - Fork 906
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
Submodule.__init__ parent_commit
conversion/validation is implied but not done
#1869
Comments
Thanks a lot for documenting the issue. As this implementation was intended to be 'a more easily usable' version of git submodules (back then they were much rougher than they are now), I'd think it's better to let the code match the documented behaviour, assuming that wouldn't unnecessarily narrow its applicability but instead makes it safer. However, it's hard for me to be more assertive here. |
I worry about the possibility that binding something other than a GitPython To be clear, I'm not suggesting GitPython forever continue to support all possible wrong uses that happen somehow to be working, only that maybe this hasn't been found before because the asymmetry is doing something valuable that should be retained. I'll look into this a bit further by seeing how I'll report back, at least to say whether I was able to find enough information to proceed with the related part of #1859. |
I've looked into this a bit further. First, I should mention that some of the validation I showed above is not done by default in GitPython/git/objects/submodule/base.py Lines 1276 to 1277 in edb8d26
But then also, related to that, there is this near the end, which I had not shown: GitPython/git/objects/submodule/base.py Lines 1291 to 1297 in edb8d26
The potentially expensive validation is not done by default-- But it seems to me that it would not be intuitive that constructing a Besides that, however, it does seem like the private GitPython/git/objects/submodule/base.py Line 277 in edb8d26
I get |
These used the old Commit_ish. They may not all be the same as each other, since they perform different validation and some will look up a commit while others do not. In particular, this is complicated by how Submodile.__init__ documents its parent_commit parameter: it says to see the set_parent_commit method. But __init__ sets the _parent_commit attribute to parent_commit, while set_parent_commit treats its commit parameter differently, calling self.repo.commit on it to get get a Commit object from it even if it wasn't one to begin with. See gitpython-developers#1869 for full details. There may be some other subtleties as well. A number of uses of the of the old Commit_ish type appear in git.submodule.base, all related to parent_commit. These are all remaining references to it (identifiable due to the rename to Old_commit_ish done in 04a2753), though. So once the changes begun here for git.submodule.base are done, that will also have completed the broader replacement effort begun in 7328a00. At that point cleanup can be done in git.types (removing Old_commit_ish introduced in 04a2753, replacing Lit_old_commit_ish with a possibly-updated and deprecated Lit_commit_ish to avoid a breaking change, and possibly making further refinements to additions to the newly added docstrings).
These used the old Commit_ish. They may not all be the same as each other, since they perform different validation and some will look up a commit while others do not. In particular, this is complicated by how Submodile.__init__ documents its parent_commit parameter: it says to see the set_parent_commit method. But __init__ sets the _parent_commit attribute to parent_commit, while set_parent_commit treats its commit parameter differently, calling self.repo.commit on it to get get a Commit object from it even if it wasn't one to begin with. See gitpython-developers#1869 for full details. There may be some other subtleties as well. A number of uses of the of the old Commit_ish type appear in git.submodule.base, all related to parent_commit. These are all remaining references to it (identifiable due to the rename to Old_commit_ish done in 04a2753), though. So once the changes begun here for git.submodule.* are done, that will also have completed the broader replacement effort begun in 7328a00. At that point cleanup can be done in git.types (removing Old_commit_ish introduced in 04a2753, replacing Lit_old_commit_ish with a possibly-updated and deprecated Lit_commit_ish to avoid a breaking change, and possibly making further refinements to additions to the newly added docstrings).
Thanks for the update! By the looks of it, fixing the code is a bit tougher than anticipated and it pains me to see you spend time on the submodule implementation, even though I know how it came to be naturally and that it is necessary. After all, the submodule implementation is likely broken in many ways, so it is my hope that any fixes only go as deep as they have to be in order to help with what initially triggered the investigation into submodules in the first place. With that said, maybe adjusting the documentation would be easier at this point, and not necessarily (much) worse? |
I think for now--not as a fix for this bug, but as a way forward that somewhat mitigates it at least from a documentation perspective and also allows #1859 to be finished--that it may be sufficient just to fix the type annotations based on what actually works. This will make clearer how they can be used, and updates to the docstrings or changes to their behavior could come later. I've done this in 1f03e7f. |
This includes a brief description of the Submodule.__init__ parent_commit parameter in its docstring, rather than only referring to the set_parent_commit method, whose semantics differ due to conversation and validation, and which accepts more types than just Commit or None. The wording is based on wording in set_parent_commit, adjusted for the difference in types, and set_parent_commit remains reference for further details. This builds on 1f03e7f (gitpython-developers#1859) in improving the situation described in gitpython-developers#1869.
It looks like this issue may have been inadvertently closed automatically as a result of the wording in 1f03e7f:
The phrase "will not have fixed #1869" contains "fixed #1869", which GitHub took to mean that the commit fixed #1869: I've done a bit more in #1877, which I think is the minimal further change necessary to consider this fixed (though it might be appropriate to leave it open even after that, since greater documentation changes and/or behavioral changes may be warranted). |
Thanks for catching this! I merged #1877 and would be happy with keeping this issue closed if you agree. Otherwise it's definitely OK to keep it open as well. |
I think it may be reasonable to consider #1877 (together with previous changes) to have fixed this, I'm not sure. I'm not advocating that it be reopened at this time. |
The
parent_commit
parameter ofSubmodule.__init__
is documented this way:GitPython/git/objects/submodule/base.py
Lines 135 to 136 in edb8d26
Submodule.__init__
binds this directly to the private_parent_commit
attribute:GitPython/git/objects/submodule/base.py
Line 147 in edb8d26
But this is at odds with the documented relationship to
Submodule.set_parent_commit
. That method'scommit
parameter corresponds to theparent_commit
parameter ofSubmodule.__init__
, in that itscommit
parameter is used to identify the commit, if any, to set as_parent_commit
. However,set_parent_commit
performs both conversion and validation.This is the relevant fragment of
set_parent_commit
's docstring:GitPython/git/objects/submodule/base.py
Lines 1253 to 1255 in edb8d26
When
commit
isNone
, it setsNone
to_parent_commit
. Otherwise, however,commit
may not already be aCommit
object, and that is okay, because a commit is looked up from it:GitPython/git/objects/submodule/base.py
Line 1274 in edb8d26
That's the conversion. Then validation is performed, with
_parent_commit
ending up set to the commit thatcommit
identified only if there is such a suitable commit:GitPython/git/objects/submodule/base.py
Lines 1275 to 1289 in edb8d26
The type annotations do not reveal the intent, as they are among those using
Commit_ish
that need to be updated with the fix forCommit_ish
, and that I am fixing up in #1859. My immediate motivation for opening this issue is that I'm having trouble figuring out how to annotate them, because due to the inconsistency between the docstring and the implementations, I don't know what is intended to be accepted.Either the documentation should be updated, which could be part of #1859, or the code should be fixed to perform any expected validation and conversion and a test case added to check that this is working, which would be best done separately from #1859 (lest its scope expand ever further). I am not sure which. For #1859, it is likely sufficient for me to know what is intended, so full progress on this is not needed to finish #1859. It is my hope and also strong guess that this issue is not a blocker for #1859.
This should not be confused with #1866, which is about the
parent_commits
parameter ofIndexFile.commit
rather than theparent_commit
parameter ofSubmodule.__init__
(and which, unlike this, really is about annotations).The text was updated successfully, but these errors were encountered: