MCPcopy Index your code
hub / github.com/python/cpython / _FIELD_BASE

Class _FIELD_BASE

Lib/dataclasses.py:198–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196
197# Markers for the various kinds of fields and pseudo-fields.
198class _FIELD_BASE:
199 def __init__(self, name):
200 self.name = name
201 def __repr__(self):
202 return self.name
203_FIELD = _FIELD_BASE('_FIELD')
204_FIELD_CLASSVAR = _FIELD_BASE('_FIELD_CLASSVAR')
205_FIELD_INITVAR = _FIELD_BASE('_FIELD_INITVAR')

Callers 1

dataclasses.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…