]> granicus.if.org Git - python/commit
save_global(): Trying to resolve module.name can fail for two
authorTim Peters <tim.peters@gmail.com>
Tue, 18 Feb 2003 20:50:45 +0000 (20:50 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 18 Feb 2003 20:50:45 +0000 (20:50 +0000)
commitb9ce7cd8b8cea66e3ad062fb273efdbf14a7e4e0
tree7069f1596f21d9cfc470c88e65f4505df5e69089
parent97e5ff555e581e30c21f703bf5ca89402db6f557
save_global():  Trying to resolve module.name can fail for two
reasons:  importing module can fail, or the attribute lookup
module.name can fail.  We were giving the same error msg for
both cases, making it needlessly hard to guess what went wrong.
These cases give different error msgs now.
Modules/cPickle.c