Differences between revisions 2 and 3
Revision 2 as of 2005-02-26 20:27:45
Size: 1669
Editor: ClarkUpdike
Comment:
Revision 3 as of 2008-11-15 09:15:58
Size: 1671
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 *[#initmodule InitModule]  *[[#initmodule|InitModule]]
Line 6: Line 6:
Topic: `InitModule` [[BR]]
[[Anchor(initmodule)]]
ClarkUpdike Feb 26 2005 [[BR]]
Topic: `InitModule` <<BR>>
<<Anchor(initmodule)>>
ClarkUpdike Feb 26 2005 <<BR>>
Line 11: Line 11:
<whine>[[BR]]My personal opinion: <whine><<BR>>My personal opinion:

Notes/Discussion/Decisions on having PySequence implement java.util.List...

Topics


Topic: InitModule
ClarkUpdike Feb 26 2005
I had originally put in here a detailed anaysis of conflicts between the comments and the source code regarding the InitModule interface. The comments seemed to indicate that PySequence should implement InitModule but couldn't because the class was abstract and PyJavaClass would try to instatiate it erroneously. But PyJavaClass was already correctly using reflection to give an error message in PyObject __call__(PyObject[] args, String[] keywords) if an abstract class was passed in. So then I was trying to track down why the PyList wasn't implementing ClassDictInit. It was providing the required static method classDictInit() but it was a do-nothing method and it wasn't calling PySequence.classDictInit() like the comments said it should. So then I diff'd the changes from 2.2a to the tip with new style class changes. Apparently, all this changed with new style classes. A case of comments being 2 to 3 generations old.

<whine>
My personal opinion:

  • Under-commenting code is bad (only comment the unobvious)
  • Over-commented code can also be bad, and potentially leads to...
  • Wrong/Out-Of-Date comments are worst of all

This wasn't a case of over-commenting, just a case of not maintaining the comments with the code.

</whine>

Of course, if I knew more about the code to begin with, I probably would have figured it out faster. But the comments are supposed to be there help the neophytes, no?

CollectionsIntegration/PySequence (last edited 2008-11-15 09:15:58 by localhost)