Browse Source

Fix py2.x inspect.getargspec

pull/5/head
Andrei 9 years ago
parent
commit
0b48de0bfd
  1. 2
      README.md
  2. 10
      disco/types/base.py

2
README.md

@ -13,7 +13,7 @@ Disco is currently in an early-alpha phase. What you see today may change a lot
## Installation ## Installation
Disco was built to run both as a generic-use library, and a standalone bot toolkit. Installing disco is as easy as running `pip install disco`, however some extra packages are recommended for power-users, namely: Disco was built to run both as a generic-use library, and a standalone bot toolkit. Installing disco is as easy as running `pip install disco-py`, however some extra packages are recommended for power-users, namely:
|Name|Reason| |Name|Reason|
|----|------| |----|------|

10
disco/types/base.py

@ -11,9 +11,10 @@ DATETIME_FORMATS = [
def _make(typ, data, client): def _make(typ, data, client):
args, _, _, _ = inspect.getargspec(typ) if inspect.isfunction(typ):
if 'client' in args: args, _, _, _ = inspect.getargspec(typ)
return typ(data, client) if 'client' in args:
return typ(data, client)
return typ(data) return typ(data)
@ -118,7 +119,7 @@ class Model(six.with_metaclass(ModelMeta)):
continue continue
try: try:
if client: if client and inspect.isfunction(typ):
args, _, _, _ = inspect.getargspec(typ) args, _, _, _ = inspect.getargspec(typ)
if 'client' in args: if 'client' in args:
v = typ(obj[name], client) v = typ(obj[name], client)
@ -146,7 +147,6 @@ class Model(six.with_metaclass(ModelMeta)):
if isinstance(getattr(type(self), name), property): if isinstance(getattr(type(self), name), property):
delattr(self, name) delattr(self, name)
@classmethod @classmethod
def create(cls, client, data): def create(cls, client, data):
return cls(data, client) return cls(data, client)

Loading…
Cancel
Save