mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Merge 3.5
This commit is contained in:
commit
6384c66d1f
1 changed files with 3 additions and 2 deletions
|
@ -399,8 +399,9 @@ def _module_relative_path(module, path):
|
|||
basedir = os.curdir
|
||||
else:
|
||||
# A module w/o __file__ (this includes builtins)
|
||||
raise ValueError("Can't resolve paths relative to the module " +
|
||||
module + " (it has no __file__)")
|
||||
raise ValueError("Can't resolve paths relative to the module "
|
||||
"%r (it has no __file__)"
|
||||
% module.__name__)
|
||||
|
||||
# Combine the base directory and the path.
|
||||
return os.path.join(basedir, *(path.split('/')))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue