Popular recipes by Ken Goldstein http://code.activestate.com/recipes/users/98073/2001-03-12T13:52:48-08:00ActiveState Code RecipesCreate a unique CVS/RCS/SCCS keyword line (Python) 2001-03-12T13:52:48-08:00Ken Goldsteinhttp://code.activestate.com/recipes/users/98073/http://code.activestate.com/recipes/52240-create-a-unique-cvsrcssccs-keyword-line/ <p style="color: grey"> Python recipe 52240 by <a href="/recipes/users/98073/">Ken Goldstein</a> . </p> <p>Unlike interpreted languages such as Perl and Python, the keyword line must NOT be commented out in .c or .h files. The keyword string is defined as a static char so that it remains unchanged in the compiled executable. This program will display a complete keyword line where the number after CVSid is always unique. You can then cut and paste the line into your .c or .h file. The diplayed line will look like: static char *CVSid432422157="@(#) $Header$ ";</p>