Steven D'Aprano <[email protected]> writes: > C has a single nil pointer compatible with all pointer types.
C++11 has a separate type just for the null pointer, which can be automatically coerced to other pointer types. I'm not sure but I think that means it is couthing up slightly. http://en.cppreference.com/w/cpp/types/nullptr_t http://en.cppreference.com/w/cpp/language/nullptr -- https://mail.python.org/mailman/listinfo/python-list
