1 #ifndef PYTHONIC_INCLUDE_BUILTIN_FALSE_HPP
2 #define PYTHONIC_INCLUDE_BUILTIN_FALSE_HPP
3 
4 #include "pythonic/include/types/bool.hpp"
5 
6 PYTHONIC_NS_BEGIN
7 
8 namespace builtins
9 {
10 
11   static const bool False = false;
12 }
13 PYTHONIC_NS_END
14 
15 #endif
16