mirror of
https://github.com/evennia/evennia.git
synced 2026-04-06 07:57:16 +02:00
Getting started with conversion ...
This commit is contained in:
parent
94b2677f4c
commit
7d6a4b44f5
2 changed files with 1 additions and 14 deletions
|
|
@ -18,8 +18,6 @@ See www.evennia.com for full documentation.
|
|||
|
||||
"""
|
||||
|
||||
|
||||
|
||||
# Delayed loading of properties
|
||||
|
||||
# Typeclasses
|
||||
|
|
@ -318,11 +316,6 @@ def _init():
|
|||
del _EvContainer
|
||||
|
||||
|
||||
del object
|
||||
del absolute_import
|
||||
del print_function
|
||||
|
||||
|
||||
def set_trace(debugger="auto", term_size=(140, 40)):
|
||||
"""
|
||||
Helper function for running a debugger inside the Evennia event loop.
|
||||
|
|
|
|||
|
|
@ -11,23 +11,17 @@ Run the script with the -h flag to see usage information.
|
|||
|
||||
"""
|
||||
|
||||
from builtins import input, range
|
||||
|
||||
import os
|
||||
import sys
|
||||
import signal
|
||||
import shutil
|
||||
import importlib
|
||||
import pickle
|
||||
from distutils.version import LooseVersion
|
||||
from argparse import ArgumentParser
|
||||
import argparse
|
||||
from subprocess import Popen, check_output, call, CalledProcessError, STDOUT
|
||||
|
||||
try:
|
||||
import cPickle as pickle
|
||||
except ImportError:
|
||||
import pickle
|
||||
|
||||
from twisted.protocols import amp
|
||||
from twisted.internet import reactor, endpoints
|
||||
import django
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue