Skip Montanaro writes:
I just updated httplib.py to expand the list of names in its __all__ list. I was operating on version 1.34. After the checkin I am looking at version 1.34.2.1. I see that Lib/CVS/Tag exists in my directory tree and says "release21-maint". Did I muff it? If so, how should I do an unmuff operation?
If that's really a muff, revert the change:
cd .../Lib/ cvs diff -r1.34.2.1 -r1.34 httplib.py | patch
and commit the new version as 1.34.2.2:
cvs commit -m 'unmuff...' httplib.py
-Fred