Getting started with conversion ...

This commit is contained in:
Griatch 2018-10-02 00:05:29 +02:00
parent 94b2677f4c
commit 7d6a4b44f5
2 changed files with 1 additions and 14 deletions

View file

@ -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.

View file

@ -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