updates to support 2/3 along with not using vcmd c extension

This commit is contained in:
bharnden 2019-06-02 19:06:25 -07:00
parent 864c7b69a1
commit ecc63f4abb
22 changed files with 680 additions and 636 deletions

View file

@ -5,6 +5,7 @@ event.py: event loop implementation using a heap queue and threads.
import heapq
import threading
import time
from past.builtins import cmp
class Timer(threading.Thread):

View file

@ -9,6 +9,7 @@ import os
import threading
import time
from builtins import int
from past.builtins import cmp
from core import utils
from core.config import ConfigGroup