mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
e56303798c
Initial SickGear for Python 3.
16 lines
350 B
Python
16 lines
350 B
Python
from ..base import *
|
|
|
|
BooleanPrototype.define_own_property('constructor', {
|
|
'value': Boolean,
|
|
'enumerable': False,
|
|
'writable': True,
|
|
'configurable': True
|
|
})
|
|
|
|
Boolean.define_own_property(
|
|
'prototype', {
|
|
'value': BooleanPrototype,
|
|
'enumerable': False,
|
|
'writable': False,
|
|
'configurable': False
|
|
})
|