diff options
author | Barry Warsaw <barry@python.org> | 1997-08-21 22:36:26 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-08-21 22:36:26 (GMT) |
commit | 779133c70791aa46f98e22854dcbdd2b47d3a60c (patch) | |
tree | 7a273185fa88393a253493ba345e9a2e350d0115 /Modules | |
parent | d7a7100c990b481f918f2558656c66bcd34c5656 (diff) | |
download | cpython-779133c70791aa46f98e22854dcbdd2b47d3a60c.zip cpython-779133c70791aa46f98e22854dcbdd2b47d3a60c.tar.gz cpython-779133c70791aa46f98e22854dcbdd2b47d3a60c.tar.bz2 |
Removed JF's dollar-Log-dollar RCS turd that caused compilation to
crash due to GvR's last check in message :-). Will try to convince JF
to remove all this evilness.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/cPickle.c | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 49fb8b0..980fb28 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c @@ -3909,55 +3909,3 @@ initcPickle() { init_stuff(m, d); CHECK_FOR_ERRORS("can't initialize module cPickle"); } - -/**************************************************************************** - $Log$ - Revision 2.10 1997/08/21 02:30:40 guido - Added /**/ around #end tags - - Revision 2.9 1997/08/20 23:38:57 guido - Renamed strndup to pystrndup, to avoid conflicting prototype - in GNU libc on some platforms. - - Revision 2.8 1997/08/13 03:14:37 guido - cPickle release 0.3 from Jim Fulton - - Revision 1.41 1997/06/20 19:45:10 jim - Fixed dumb bug in __main__ fix. :-( - - Revision 1.40 1997/06/19 18:57:36 jim - Added ident string. - - Revision 1.39 1997/06/13 19:40:44 jim - - Various changes to make gcc -Wall -pedantic happy, including - extra parens elimination of unused vars. - - - Added check to avoid pickling module __main__ for classes that are - defined in other modules, in whichmodule - - - Changed to use Py_eval_input rather than eval_input. - - - Changed to use SIZEOF_LONG macro to avoid warnings on 32-bit machines. - - - Added option of supplying None to pickler, which cases no data to be - written during pickling. This is slightly useful, in conjunction - with persistent_id attribute to find persistent sub-objects without - writing a pickle. - - Revision 1.38 1997/05/07 17:06:43 jim - Added clear_memo method to pickler. - - Revision 1.37 1997/05/06 20:21:01 jim - Changed to only add strings to memo that have length greater than one. - - Revision 1.36 1997/03/11 22:05:02 chris - write POP rather than POPMARK in non-binary mode - use put2() in save_reduce() and save_inst() only if state is not a dictionary - removed put2() from save_tuple() - - Revision 1.35 1997/03/11 20:03:30 jim - Added log comment at bottom. - - - - ****************************************************************************/ |