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
72 if not cls.__warn__ is False and not isinstance(value, COWMeta):
73 print("Warning: Doing a copy because %s is a mutable type." % key, file=cls.__warn__)
153 if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False:
154 …rint("Warning: If you aren't going to change any of the values call with True.", file=cls.__warn__)
158 if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False:
159 …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