| commit | c9d7c4a656592950987f1db31a0871c31705c325 | [log] [tgz] |
|---|---|---|
| author | Tim Peters <[email protected]> | Tue Jan 28 00:43:26 2003 +0000 |
| committer | Tim Peters <[email protected]> | Tue Jan 28 00:43:26 2003 +0000 |
| tree | aa93e669f54fda3d4b8012997c496c7c798ebaab | |
| parent | 22987e3cbdc577aed4290971c08327fa3ab74ae9 [diff] [blame] |
Added XXX about save()'s special-casing of tuples -- I don't get it.
diff --git a/Lib/pickle.py b/Lib/pickle.py index 1f551d6..2805dfb 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py
@@ -255,6 +255,7 @@ t = type(object) + # XXX Why are tuples a special case here? if (t is TupleType) and (len(object) == 0): if self.bin: self.save_empty_tuple(object)