[Python-checkins] python/nondist/sandbox/twister _random.c,1.12,1.13

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sun, 29 Dec 2002 00:16:02 -0800


Update of /cvsroot/python/python/nondist/sandbox/twister
In directory sc8-pr-cvs1:/tmp/cvs-serv2669

Modified Files:
	_random.c 
Log Message:
Added comment delimiting the Python-specific part of the code; that part
isn't covered by the Twister authors' license.


Index: _random.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/twister/_random.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** _random.c	29 Dec 2002 07:53:59 -0000	1.12
--- _random.c	29 Dec 2002 08:15:59 -0000	1.13
***************
*** 199,202 ****
--- 199,207 ----
  }
  
+ /*
+  * The rest is Python-specific code, neither part of, nor derived from, the
+  * Twister download.
+  */
+ 
  static PyObject *
  random_seed(RandomObject *self, PyObject *args)