mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
11 lines
576 B
Python
11 lines
576 B
Python
|
from ..base import *
|
||
|
|
||
|
RegExpPrototype.define_own_property('constructor', {'value': RegExp,
|
||
|
'enumerable': False,
|
||
|
'writable': True,
|
||
|
'configurable': True})
|
||
|
|
||
|
RegExp.define_own_property('prototype', {'value': RegExpPrototype,
|
||
|
'enumerable': False,
|
||
|
'writable': False,
|
||
|
'configurable': False})
|