mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
e56303798c
Initial SickGear for Python 3.
14 lines
323 B
Python
14 lines
323 B
Python
from ..conversions import *
|
|
from ..func_utils import *
|
|
|
|
|
|
def Boolean(this, args):
|
|
return to_boolean(get_arg(args, 0))
|
|
|
|
|
|
def BooleanConstructor(args, space):
|
|
temp = space.NewObject()
|
|
temp.prototype = space.BooleanPrototype
|
|
temp.Class = 'Boolean'
|
|
temp.value = to_boolean(get_arg(args, 0))
|
|
return temp
|