1from ..base import *
2
3BooleanPrototype.define_own_property('constructor', {
4    'value': Boolean,
5    'enumerable': False,
6    'writable': True,
7    'configurable': True
8})
9
10Boolean.define_own_property(
11    'prototype', {
12        'value': BooleanPrototype,
13        'enumerable': False,
14        'writable': False,
15        'configurable': False
16    })
17