Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(0) | Derive(4) | Import(4)
src/f/i/fife-rpg-HEAD/tests/test_statistics.py fife-rpg(Download)
import unittest from bGrease.world import BaseWorld from fife_rpg.entities import RPGEntity
class GameWorld(BaseWorld): """GameWorld""" def configure(self): """Set up the world"""
src/f/i/fife-rpg-HEAD/tests/test_lockable.py fife-rpg(Download)
# along with this program. If not, see <http://www.gnu.org/licenses/>. from bGrease.world import BaseWorld from bGrease.entity import Entity
class GameWorld(BaseWorld): """GameWorld""" def configure(self): """Set up the world"""
src/f/i/fife-rpg-HEAD/tests/test_equip.py fife-rpg(Download)
from fife_rpg.components import equip, equipable, general from bGrease.world import BaseWorld from fife_rpg.entities import RPGEntity import unittest class TestEquip(unittest.TestCase): class GameWorld(BaseWorld):
src/f/i/fife-rpg-HEAD/tests/test_container.py fife-rpg(Download)
import unittest from bGrease.world import BaseWorld from fife_rpg.entities import RPGEntity from fife_rpg.components import containable, container, general class TestContainer(unittest.TestCase): class GameWorld(BaseWorld):