Home
last modified time | relevance | path

Searched refs:__warn__ (Results 1 – 2 of 2) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bb/
H A DCOW.py34 __warn__ = False variable in COWDictMeta
71 if not cls.__warn__ is False and not isinstance(value, COWMeta):
72 print("Warning: Doing a copy because %s is a mutable type." % key, file=cls.__warn__)
152 if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False:
153 …rint("Warning: If you aren't going to change any of the values call with True.", file=cls.__warn__)
157 if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False:
158 …rint("Warning: If you aren't going to change any of the values call with True.", file=cls.__warn__)
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dcow.py29 COWDictBase.__warn__ = self._warning_file
32 COWDictBase.__warn__ = sys.stderr