在python中导致2/3模块兼容性的问题是什么?

时间:2016-09-02 01:23:44

标签: python python-3.x python-import python-module

我有一个像这样的目录结构:

> coolmod
-> __init__.py
-> coolmod.py

__init__.py我有:

from coolmod import *

我还有一个单元测试目录,它在python 2和3中运行良好。但是,当我进入包含coolmod的目录时,__init__.py命令仅在Python 2中运行。在Python 3中,我得到AttributeError: module 'coolmod' has no attribute 'coolfunc'。改变了什么,我该怎么做才能达到预期的效果?

0 个答案:

没有答案