summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/cPickle.c')
-rw-r--r--Modules/cPickle.c52
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.
-
-
-
- ****************************************************************************/