commit | 1461886eeebe59a87ca13471ba0a3fe04dd3c165 | [log] [tgz] |
---|---|---|
author | Facundo Batista <facundobatista@gmail.com> | Sun Jun 22 15:27:10 2008 +0000 |
committer | Facundo Batista <facundobatista@gmail.com> | Sun Jun 22 15:27:10 2008 +0000 |
tree | a8f17618562866f1246df4d3a13f061db31366fd | |
parent | 2126bab8f00cb8eeebf80e788955f3ca8fc27d32 [diff] [blame] |
Issue 3164. Small fix to don't repeat a comparation without necessity.
diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 51fc226..afa75fd 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c
@@ -2366,6 +2366,7 @@ res = save_string(self, args, 0); goto finally; } + break; #ifdef Py_USING_UNICODE case 'u': @@ -2373,6 +2374,7 @@ res = save_unicode(self, args, 0); goto finally; } + break; #endif }