pyglove 0.5.0.dev202510230131__py3-none-any.whl → 0.5.0.dev202511300809__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -147,4 +147,11 @@ from pyglove.core.symbolic.list import mark_as_insertion
147
147
  from pyglove.core.symbolic.base import WritePermissionError
148
148
  from pyglove.core.symbolic.error_info import ErrorInfo
149
149
 
150
+ # Unknown symbols.
151
+ from pyglove.core.symbolic.unknown_symbols import UnknownSymbol
152
+ from pyglove.core.symbolic.unknown_symbols import UnknownType
153
+ from pyglove.core.symbolic.unknown_symbols import UnknownFunction
154
+ from pyglove.core.symbolic.unknown_symbols import UnknownMethod
155
+ from pyglove.core.symbolic.unknown_symbols import UnknownTypedObject
156
+
150
157
  # pylint: enable=g-bad-import-order
@@ -2042,7 +2042,7 @@ def from_json(
2042
2042
  context: Optional[utils.JSONConversionContext] = None,
2043
2043
  auto_symbolic: bool = True,
2044
2044
  auto_import: bool = True,
2045
- auto_dict: bool = False,
2045
+ convert_unknown: bool = False,
2046
2046
  allow_partial: bool = False,
2047
2047
  root_path: Optional[utils.KeyPath] = None,
2048
2048
  value_spec: Optional[pg_typing.ValueSpec] = None,
@@ -2073,8 +2073,13 @@ def from_json(
2073
2073
  identify its parent module and automatically import it. For example,
2074
2074
  if the type is 'foo.bar.A', PyGlove will try to import 'foo.bar' and
2075
2075
  find the class 'A' within the imported module.
2076
- auto_dict: If True, dict with '_type' that cannot be loaded will remain
2077
- as dict, with '_type' renamed to 'type_name'.
2076
+ convert_unknown: If True, when a '_type' is not registered and cannot
2077
+ be imported, PyGlove will create objects of:
2078
+ - `pg.symbolic.UnknownType` for unknown types;
2079
+ - `pg.symbolic.UnknownTypedObject` for objects of unknown types;
2080
+ - `pg.symbolic.UnknownFunction` for unknown functions;
2081
+ - `pg.symbolic.UnknownMethod` for unknown methods.
2082
+ If False, TypeError will be raised.
2078
2083
  allow_partial: Whether to allow elements of the list to be partial.
2079
2084
  root_path: KeyPath of loaded object in its object tree.
2080
2085
  value_spec: The value spec for the symbolic list or dict.
@@ -2095,7 +2100,12 @@ def from_json(
2095
2100
  if context is None:
2096
2101
  if (isinstance(json_value, dict) and (
2097
2102
  context_node := json_value.get(utils.JSONConvertible.CONTEXT_KEY))):
2098
- context = utils.JSONConversionContext.from_json(context_node, **kwargs)
2103
+ context = utils.JSONConversionContext.from_json(
2104
+ context_node,
2105
+ auto_import=auto_import,
2106
+ convert_unknown=convert_unknown,
2107
+ **kwargs
2108
+ )
2099
2109
  json_value = json_value[utils.JSONConvertible.ROOT_VALUE_KEY]
2100
2110
  else:
2101
2111
  context = utils.JSONConversionContext()
@@ -2103,7 +2113,7 @@ def from_json(
2103
2113
  typename_resolved = kwargs.pop('_typename_resolved', False)
2104
2114
  if not typename_resolved:
2105
2115
  json_value = utils.json_conversion.resolve_typenames(
2106
- json_value, auto_import, auto_dict
2116
+ json_value, auto_import, convert_unknown
2107
2117
  )
2108
2118
 
2109
2119
  def _load_child(k, v):
@@ -2177,7 +2187,7 @@ def from_json_str(
2177
2187
  *,
2178
2188
  context: Optional[utils.JSONConversionContext] = None,
2179
2189
  auto_import: bool = True,
2180
- auto_dict: bool = False,
2190
+ convert_unknown: bool = False,
2181
2191
  allow_partial: bool = False,
2182
2192
  root_path: Optional[utils.KeyPath] = None,
2183
2193
  value_spec: Optional[pg_typing.ValueSpec] = None,
@@ -2205,8 +2215,13 @@ def from_json_str(
2205
2215
  identify its parent module and automatically import it. For example,
2206
2216
  if the type is 'foo.bar.A', PyGlove will try to import 'foo.bar' and
2207
2217
  find the class 'A' within the imported module.
2208
- auto_dict: If True, dict with '_type' that cannot be loaded will remain
2209
- as dict, with '_type' renamed to 'type_name'.
2218
+ convert_unknown: If True, when a '_type' is not registered and cannot
2219
+ be imported, PyGlove will create objects of:
2220
+ - `pg.symbolic.UnknownType` for unknown types;
2221
+ - `pg.symbolic.UnknownTypedObject` for objects of unknown types;
2222
+ - `pg.symbolic.UnknownFunction` for unknown functions;
2223
+ - `pg.symbolic.UnknownMethod` for unknown methods.
2224
+ If False, TypeError will be raised.
2210
2225
  allow_partial: If True, allow a partial symbolic object to be created.
2211
2226
  Otherwise error will be raised on partial value.
2212
2227
  root_path: The symbolic path used for the deserialized root object.
@@ -2236,7 +2251,7 @@ def from_json_str(
2236
2251
  _decode_int_keys(json.loads(json_str)),
2237
2252
  context=context,
2238
2253
  auto_import=auto_import,
2239
- auto_dict=auto_dict,
2254
+ convert_unknown=convert_unknown,
2240
2255
  allow_partial=allow_partial,
2241
2256
  root_path=root_path,
2242
2257
  value_spec=value_spec,
@@ -506,8 +506,7 @@ class ListTest(unittest.TestCase):
506
506
  def test_index(self):
507
507
  sl = List([0, 1, 2, 1])
508
508
  self.assertEqual(sl.index(1), 1)
509
- with self.assertRaisesRegex(
510
- ValueError, '3 is not in list'):
509
+ with self.assertRaisesRegex(ValueError, '.* not in list'):
511
510
  _ = sl.index(3)
512
511
 
513
512
  # Index of inferred value is based on its symbolic form.
@@ -339,7 +339,8 @@ class Object(base.Symbolic, metaclass=ObjectMeta):
339
339
 
340
340
  # Set `__serialization_key__` before JSONConvertible.__init_subclass__
341
341
  # is called.
342
- setattr(cls, '__serialization_key__', cls.__type_name__)
342
+ if '__serialization_key__' not in cls.__dict__:
343
+ setattr(cls, '__serialization_key__', cls.__type_name__)
343
344
 
344
345
  super().__init_subclass__()
345
346
 
@@ -38,6 +38,7 @@ from pyglove.core.symbolic.object import use_init_args as pg_use_init_args
38
38
  from pyglove.core.symbolic.origin import Origin
39
39
  from pyglove.core.symbolic.pure_symbolic import NonDeterministic
40
40
  from pyglove.core.symbolic.pure_symbolic import PureSymbolic
41
+ from pyglove.core.symbolic.unknown_symbols import UnknownTypedObject
41
42
  from pyglove.core.views.html import tree_view # pylint: disable=unused-import
42
43
 
43
44
 
@@ -3158,7 +3159,7 @@ class SerializationTest(unittest.TestCase):
3158
3159
  Q.partial(P.partial()).to_json_str(), allow_partial=True),
3159
3160
  Q.partial(P.partial()))
3160
3161
 
3161
- def test_serialization_with_auto_dict(self):
3162
+ def test_serialization_with_convert_unknown(self):
3162
3163
 
3163
3164
  class P(Object):
3164
3165
  auto_register = False
@@ -3181,15 +3182,17 @@ class SerializationTest(unittest.TestCase):
3181
3182
  }
3182
3183
  )
3183
3184
  self.assertEqual(
3184
- base.from_json_str(Q(P(1), y='foo').to_json_str(), auto_dict=True),
3185
- {
3186
- 'p': {
3187
- 'type_name': P.__type_name__,
3188
- 'x': 1
3189
- },
3190
- 'y': 'foo',
3191
- 'type_name': Q.__type_name__,
3192
- }
3185
+ base.from_json_str(
3186
+ Q(P(1), y='foo').to_json_str(), convert_unknown=True
3187
+ ),
3188
+ UnknownTypedObject(
3189
+ type_name=Q.__type_name__,
3190
+ p=UnknownTypedObject(
3191
+ type_name=P.__type_name__,
3192
+ x=1
3193
+ ),
3194
+ y='foo'
3195
+ )
3193
3196
  )
3194
3197
 
3195
3198
  def test_serialization_with_converter(self):
@@ -0,0 +1,147 @@
1
+ # Copyright 2021 The PyGlove Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Symbolic types for reprenting unknown types and objects."""
15
+
16
+ from typing import Annotated, Any, ClassVar, Literal
17
+ from pyglove.core import typing as pg_typing
18
+ from pyglove.core import utils
19
+ from pyglove.core.symbolic import list as pg_list # pylint: disable=unused-import
20
+ from pyglove.core.symbolic import object as pg_object
21
+
22
+
23
+ class UnknownSymbol(pg_object.Object, pg_typing.CustomTyping):
24
+ """Interface for symbolic representation of unknown symbols."""
25
+ auto_register = False
26
+
27
+ def custom_apply(self, *args, **kwargs) -> tuple[bool, Any]:
28
+ """Bypass PyGlove type check."""
29
+ return (False, self)
30
+
31
+
32
+ class UnknownType(UnknownSymbol):
33
+ """Symbolic object for representing unknown types."""
34
+
35
+ auto_register = True
36
+ __serialization_key__ = 'unknown_type'
37
+
38
+ # TODO(daiyip): Revisit the design on how `pg.typing.Object()` handles
39
+ # UnknownType. This hacky solution should be removed in the future.
40
+ __no_type_check__ = True
41
+
42
+ name: str
43
+ args: list[Any] = []
44
+
45
+ def sym_jsonify(self, **kwargs) -> utils.JSONValueType:
46
+ json_dict = {'_type': 'type', 'name': self.name}
47
+ if self.args:
48
+ json_dict['args'] = utils.to_json(self.args, **kwargs)
49
+ return json_dict
50
+
51
+ def format(
52
+ self,
53
+ compact: bool = False,
54
+ verbose: bool = True,
55
+ root_indent: int = 0,
56
+ **kwargs
57
+ ) -> str:
58
+ s = f'<unknown-type {self.name}>'
59
+ if self.args:
60
+ s += f'[{", ".join(repr(x) for x in self.args)}]'
61
+ return s
62
+
63
+ def __call__(self, **kwargs):
64
+ return UnknownTypedObject(
65
+ type_name=self.name, **kwargs
66
+ )
67
+
68
+
69
+ class UnknownCallable(UnknownSymbol):
70
+ """Symbolic object for representing unknown callables."""
71
+
72
+ auto_register = False
73
+ name: str
74
+ CALLABLE_TYPE: ClassVar[Literal['function', 'method']]
75
+
76
+ def sym_jsonify(self, **kwargs) -> utils.JSONValueType:
77
+ return {'_type': self.CALLABLE_TYPE, 'name': self.name}
78
+
79
+ def format(
80
+ self,
81
+ compact: bool = False,
82
+ verbose: bool = True,
83
+ root_indent: int = 0,
84
+ **kwargs
85
+ ) -> str:
86
+ return f'<unknown-{self.CALLABLE_TYPE} {self.name}>'
87
+
88
+
89
+ class UnknownFunction(UnknownCallable):
90
+ """Symbolic objject for representing unknown functions."""
91
+
92
+ auto_register = True
93
+ __serialization_key__ = 'unknown_function'
94
+ CALLABLE_TYPE = 'function'
95
+
96
+
97
+ class UnknownMethod(UnknownCallable):
98
+ """Symbolic object for representing unknown methods."""
99
+
100
+ auto_register = True
101
+ __serialization_key__ = 'unknown_method'
102
+ CALLABLE_TYPE = 'method'
103
+
104
+
105
+ class UnknownTypedObject(UnknownSymbol):
106
+ """Symbolic object for representing objects of unknown-type."""
107
+
108
+ auto_register = True
109
+ __serialization_key__ = 'unknown_object'
110
+
111
+ type_name: str
112
+ __kwargs__: Annotated[
113
+ Any,
114
+ (
115
+ 'Fields of the original object will be kept as symbolic attributes '
116
+ 'of this object so they can be accessed through `__getattr__`.'
117
+ )
118
+ ]
119
+
120
+ def sym_jsonify(self, **kwargs) -> utils.JSONValueType:
121
+ """Converts current object to a dict of plain Python objects."""
122
+ json_dict = self._sym_attributes.to_json(
123
+ exclude_keys=set(['type_name']), **kwargs
124
+ )
125
+ assert isinstance(json_dict, dict)
126
+ json_dict[utils.JSONConvertible.TYPE_NAME_KEY] = self.type_name
127
+ return json_dict
128
+
129
+ def format(
130
+ self,
131
+ compact: bool = False,
132
+ verbose: bool = True,
133
+ root_indent: int = 0,
134
+ **kwargs
135
+ ) -> str:
136
+ exclude_keys = kwargs.pop('exclude_keys', set())
137
+ exclude_keys.add('type_name')
138
+ kwargs['exclude_keys'] = exclude_keys
139
+ return self._sym_attributes.format(
140
+ compact,
141
+ verbose,
142
+ root_indent,
143
+ cls_name=f'<unknown-type {self.type_name}>',
144
+ key_as_attribute=True,
145
+ bracket_type=utils.BracketType.ROUND,
146
+ **kwargs,
147
+ )
@@ -0,0 +1,100 @@
1
+ # Copyright 2025 The PyGlove Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ import unittest
16
+ from pyglove.core import utils
17
+ from pyglove.core.symbolic import unknown_symbols
18
+
19
+
20
+ class UnknownTypeTest(unittest.TestCase):
21
+
22
+ def test_basics(self):
23
+ t = unknown_symbols.UnknownType(name='__main__.ABC', args=[int, str])
24
+ self.assertEqual(t.name, '__main__.ABC')
25
+ self.assertEqual(t.args, [int, str])
26
+ self.assertEqual(
27
+ repr(t),
28
+ '<unknown-type __main__.ABC>[<class \'int\'>, <class \'str\'>]'
29
+ )
30
+ self.assertEqual(
31
+ t.to_json(),
32
+ {
33
+ '_type': 'type',
34
+ 'name': '__main__.ABC',
35
+ 'args': [
36
+ {'_type': 'type', 'name': 'builtins.int'},
37
+ {'_type': 'type', 'name': 'builtins.str'},
38
+ ]
39
+ }
40
+ )
41
+ self.assertEqual(utils.from_json(t.to_json(), convert_unknown=True), t)
42
+ self.assertEqual(
43
+ t(x=1, y=2),
44
+ unknown_symbols.UnknownTypedObject(type_name='__main__.ABC', x=1, y=2)
45
+ )
46
+
47
+
48
+ class UnknownFunctionTest(unittest.TestCase):
49
+
50
+ def test_basics(self):
51
+ t = unknown_symbols.UnknownFunction(name='__main__.foo')
52
+ self.assertEqual(t.name, '__main__.foo')
53
+ self.assertEqual(repr(t), '<unknown-function __main__.foo>')
54
+ self.assertEqual(
55
+ t.to_json(),
56
+ {
57
+ '_type': 'function',
58
+ 'name': '__main__.foo',
59
+ }
60
+ )
61
+ self.assertEqual(utils.from_json(t.to_json(), convert_unknown=True), t)
62
+
63
+
64
+ class UnknownMethodTest(unittest.TestCase):
65
+
66
+ def test_basics(self):
67
+ t = unknown_symbols.UnknownMethod(name='__main__.ABC.bar')
68
+ self.assertEqual(t.name, '__main__.ABC.bar')
69
+ self.assertEqual(repr(t), '<unknown-method __main__.ABC.bar>')
70
+ self.assertEqual(
71
+ t.to_json(),
72
+ {
73
+ '_type': 'method',
74
+ 'name': '__main__.ABC.bar',
75
+ }
76
+ )
77
+ self.assertEqual(utils.from_json(t.to_json(), convert_unknown=True), t)
78
+
79
+
80
+ class UnknownObjectTest(unittest.TestCase):
81
+
82
+ def test_basics(self):
83
+ v = unknown_symbols.UnknownTypedObject(type_name='__main__.ABC', x=1)
84
+ self.assertEqual(v.type_name, '__main__.ABC')
85
+ self.assertEqual(v.x, 1)
86
+ self.assertEqual(repr(v), '<unknown-type __main__.ABC>(x=1)')
87
+ self.assertEqual(
88
+ str(v), '<unknown-type __main__.ABC>(\n x = 1\n)')
89
+ self.assertEqual(
90
+ v.to_json(),
91
+ {
92
+ '_type': '__main__.ABC',
93
+ 'x': 1,
94
+ }
95
+ )
96
+ self.assertEqual(utils.from_json(v.to_json(), convert_unknown=True), v)
97
+
98
+
99
+ if __name__ == '__main__':
100
+ unittest.main()
@@ -16,6 +16,7 @@
16
16
  import builtins
17
17
  import collections
18
18
  import inspect
19
+ import sys
19
20
  import types
20
21
  import typing
21
22
 
@@ -197,6 +198,8 @@ def annotation_from_str(
197
198
  def _resolve(type_id: str):
198
199
 
199
200
  def _as_forward_ref() -> typing.ForwardRef:
201
+ if sys.version_info >= (3, 14):
202
+ return typing.ForwardRef(type_id) # pytype: disable=not-callable
200
203
  return typing.ForwardRef(type_id, False, parent_module) # pytype: disable=not-callable
201
204
 
202
205
  def _resolve_name(name: str, parent_obj: typing.Any):
@@ -34,6 +34,12 @@ class Foo:
34
34
  _MODULE = sys.modules[__name__]
35
35
 
36
36
 
37
+ def typing_forward_ref(name: str) -> typing.ForwardRef:
38
+ if sys.version_info >= (3, 14):
39
+ return typing.ForwardRef(name)
40
+ return typing.ForwardRef(name, False, _MODULE)
41
+
42
+
37
43
  class AnnotationFromStrTest(unittest.TestCase):
38
44
  """Tests for annotation_from_str."""
39
45
 
@@ -69,7 +75,7 @@ class AnnotationFromStrTest(unittest.TestCase):
69
75
  )
70
76
  self.assertEqual(
71
77
  annotation_conversion.annotation_from_str('list[Foo.Baz]', _MODULE),
72
- list[typing.ForwardRef('Foo.Baz', False, _MODULE)]
78
+ list[typing_forward_ref('Foo.Baz')]
73
79
  )
74
80
 
75
81
  def test_generic_types(self):
@@ -138,18 +144,12 @@ class AnnotationFromStrTest(unittest.TestCase):
138
144
  self.assertEqual(
139
145
  annotation_conversion.annotation_from_str(
140
146
  'AAA', _MODULE),
141
- typing.ForwardRef(
142
- 'AAA', False, _MODULE
143
- )
147
+ typing_forward_ref('AAA')
144
148
  )
145
149
  self.assertEqual(
146
150
  annotation_conversion.annotation_from_str(
147
151
  'typing.List[AAA]', _MODULE),
148
- typing.List[
149
- typing.ForwardRef(
150
- 'AAA', False, _MODULE
151
- )
152
- ]
152
+ typing.List[typing_forward_ref('AAA')]
153
153
  )
154
154
 
155
155
  def test_reloading(self):
@@ -157,20 +157,12 @@ class AnnotationFromStrTest(unittest.TestCase):
157
157
  self.assertEqual(
158
158
  annotation_conversion.annotation_from_str(
159
159
  'typing.List[Foo]', _MODULE),
160
- typing.List[
161
- typing.ForwardRef(
162
- 'Foo', False, _MODULE
163
- )
164
- ]
160
+ typing.List[typing_forward_ref('Foo')]
165
161
  )
166
162
  self.assertEqual(
167
163
  annotation_conversion.annotation_from_str(
168
164
  'typing.List[Foo.Bar]', _MODULE),
169
- typing.List[
170
- typing.ForwardRef(
171
- 'Foo.Bar', False, _MODULE
172
- )
173
- ]
165
+ typing.List[typing_forward_ref('Foo.Bar')]
174
166
  )
175
167
  delattr(_MODULE, '__reloading__')
176
168
 
@@ -15,6 +15,7 @@
15
15
 
16
16
  import calendar
17
17
  import datetime
18
+ import sys
18
19
  from typing import Any, Callable, Optional, Tuple, Type, Union
19
20
 
20
21
  from pyglove.core import utils
@@ -135,9 +136,22 @@ def _register_builtin_converters():
135
136
  register_converter(int, float, float)
136
137
 
137
138
  # int <=> datetime.datetime.
138
- register_converter(int, datetime.datetime, datetime.datetime.utcfromtimestamp)
139
- register_converter(datetime.datetime, int,
140
- lambda x: calendar.timegm(x.timetuple()))
139
+ if sys.version_info >= (3, 11):
140
+ register_converter(
141
+ int,
142
+ datetime.datetime,
143
+ lambda x: datetime.datetime.fromtimestamp(x, datetime.UTC)
144
+ )
145
+ else:
146
+ register_converter(
147
+ int, datetime.datetime, datetime.datetime.utcfromtimestamp
148
+ )
149
+
150
+ register_converter(
151
+ datetime.datetime,
152
+ int,
153
+ lambda x: calendar.timegm(x.timetuple())
154
+ )
141
155
 
142
156
  # string <=> KeyPath.
143
157
  register_converter(str, utils.KeyPath, utils.KeyPath.parse)
@@ -13,6 +13,7 @@
13
13
  # limitations under the License.
14
14
  import calendar
15
15
  import datetime
16
+ import sys
16
17
  import typing
17
18
  import unittest
18
19
 
@@ -130,12 +131,16 @@ class BuiltInConversionsTest(unittest.TestCase):
130
131
  def test_datetime_to_int(self):
131
132
  """Test built-in converter between int and datetime.datetime."""
132
133
  timestamp = calendar.timegm(datetime.datetime.now().timetuple())
133
- now = datetime.datetime.utcfromtimestamp(timestamp)
134
+ if sys.version_info >= (3, 11):
135
+ now = datetime.datetime.fromtimestamp(timestamp, datetime.UTC)
136
+ else:
137
+ now = datetime.datetime.utcfromtimestamp(timestamp)
134
138
  self.assertEqual(vs.Object(datetime.datetime).apply(timestamp), now)
135
139
  self.assertEqual(vs.Int().apply(now), timestamp)
136
140
  self.assertEqual(
137
141
  type_conversion.get_json_value_converter(datetime.datetime)(now),
138
- timestamp)
142
+ timestamp
143
+ )
139
144
 
140
145
  def test_keypath_to_str(self):
141
146
  """Test built-in converter between string and KeyPath."""
@@ -1930,8 +1930,12 @@ class Object(Generic, ValueSpecBase):
1930
1930
  elif isinstance(t, type):
1931
1931
  if t is object:
1932
1932
  raise TypeError('<class \'object\'> is too general for Object spec.')
1933
+ elif getattr(t, '__no_type_check__', False):
1934
+ t = object
1933
1935
  elif not pg_inspect.is_generic(t):
1934
- raise TypeError('"cls" for Object spec should be a type or str.')
1936
+ raise TypeError(
1937
+ f'"cls" for Object spec should be a type or str. Encountered: {t!r}.'
1938
+ )
1935
1939
 
1936
1940
  self._forward_ref = forward_ref
1937
1941
  self._type_args = type_args
@@ -2193,6 +2193,11 @@ class ObjectTest(ValueSpecTest):
2193
2193
  self.assertEqual(
2194
2194
  vs.Object(forward_ref('Foo')).forward_refs, set([forward_ref('Foo')]))
2195
2195
 
2196
+ def test_no_type_check_special_handling(self):
2197
+ x = self.A()
2198
+ setattr(x, '__no_type_check__', True)
2199
+ self.assertIs(vs.Object(x).cls, object)
2200
+
2196
2201
  def test_default(self):
2197
2202
  self.assertEqual(vs.Object(self.A).default, typed_missing.MISSING_VALUE)
2198
2203
  a = self.A()