_miss.py 428 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2018 Joshua Bronson. All Rights Reserved.
  3. #
  4. # This Source Code Form is subject to the terms of the Mozilla Public
  5. # License, v. 2.0. If a copy of the MPL was not distributed with this
  6. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. """Provides the :obj:`_MISS` sentinel, for internally signaling "missing/not found"."""
  8. from ._marker import _Marker
  9. _MISS = _Marker('MISSING')