Browse Source

Fix some Python3 type issues (#49)

* Fix some Python3 type issues

* Fix a Python3 specific variable scoping issue

* Add variable declaration before assignment
pull/50/head
Ondřej Slabý 8 years ago
committed by Andrei Zbikowski
parent
commit
378afbb5ae
  1. 4
      disco/bot/command.py
  2. 4
      disco/bot/parser.py
  3. 3
      disco/gateway/sharder.py
  4. 5
      disco/util/snowflake.py

4
disco/bot/command.py

@ -3,6 +3,8 @@ import argparse
from holster.enum import Enum from holster.enum import Enum
from six import integer_types
from disco.bot.parser import ArgumentSet, ArgumentError from disco.bot.parser import ArgumentSet, ArgumentError
from disco.util.functional import cached_property from disco.util.functional import cached_property
@ -186,7 +188,7 @@ class Command(object):
return ctx.msg.client.state.users.select_one(username=uid[0], discriminator=uid[1]) return ctx.msg.client.state.users.select_one(username=uid[0], discriminator=uid[1])
def resolve_channel(ctx, cid): def resolve_channel(ctx, cid):
if isinstance(cid, (int, long)): if isinstance(cid, integer_types):
return ctx.msg.guild.channels.get(cid) return ctx.msg.guild.channels.get(cid)
else: else:
return ctx.msg.guild.channels.select_one(name=cid) return ctx.msg.guild.channels.select_one(name=cid)

4
disco/bot/parser.py

@ -131,6 +131,7 @@ class ArgumentSet(object):
value : str value : str
The string value to attempt conversion on. The string value to attempt conversion on.
""" """
exc = None
for typ_name in types: for typ_name in types:
typ = self.types.get(typ_name) typ = self.types.get(typ_name)
if not typ: if not typ:
@ -139,9 +140,10 @@ class ArgumentSet(object):
try: try:
return typ(ctx, value) return typ(ctx, value)
except Exception as e: except Exception as e:
exc = e
continue continue
raise e raise exc
def append(self, arg): def append(self, arg):
""" """

3
disco/gateway/sharder.py

@ -6,6 +6,7 @@ import pickle
import logging import logging
import marshal import marshal
from six import integer_types, string_types
from six.moves import range from six.moves import range
from disco.client import Client from disco.client import Client
@ -83,7 +84,7 @@ class AutoSharder(object):
@staticmethod @staticmethod
def dumps(data): def dumps(data):
if isinstance(data, (basestring, int, long, bool, list, set, dict)): if isinstance(data, (string_types, integer_types, bool, list, set, dict)):
return '\x01' + marshal.dumps(data) return '\x01' + marshal.dumps(data)
elif isinstance(data, object) and data.__class__.__name__ == 'code': elif isinstance(data, object) and data.__class__.__name__ == 'code':
return '\x01' + marshal.dumps(data) return '\x01' + marshal.dumps(data)

5
disco/util/snowflake.py

@ -26,7 +26,10 @@ def from_datetime(date):
def from_timestamp(ts): def from_timestamp(ts):
return long(ts * 1000.0 - DISCORD_EPOCH) << 22 if six.PY3:
return int(ts * 1000.0 - DISCORD_EPOCH) << 22
else:
return long(ts * 1000.0 - DISCORD_EPOCH) << 22
def to_snowflake(i): def to_snowflake(i):

Loading…
Cancel
Save