type of void fixed (None -> NoneType)

This commit is contained in:
Wenzel Jakob 2016-01-17 22:36:38 +01:00
parent 56e9f4942b
commit 82ffd40870
3 changed files with 6 additions and 6 deletions

View File

@ -1,17 +1,17 @@
Help on built-in function kw_func Help on built-in function kw_func
kkww__ffuunncc(...) kkww__ffuunncc(...)
Signature : (x : int, y : int) -> None Signature : (x : int, y : int) -> NoneType
Help on built-in function kw_func2 Help on built-in function kw_func2
kkww__ffuunncc22(...) kkww__ffuunncc22(...)
Signature : (x : int = 100L, y : int = 200L) -> None Signature : (x : int = 100L, y : int = 200L) -> NoneType
Help on built-in function kw_func3 Help on built-in function kw_func3
kkww__ffuunncc33(...) kkww__ffuunncc33(...)
Signature : (data : str = u'Hello world!') -> None Signature : (data : str = u'Hello world!') -> NoneType
kw_func(x=5, y=10) kw_func(x=5, y=10)
kw_func(x=5, y=10) kw_func(x=5, y=10)
@ -23,5 +23,5 @@ kw_func(x=100, y=10)
kw_func(x=5, y=10) kw_func(x=5, y=10)
kw_func(x=5, y=10) kw_func(x=5, y=10)
Caught expected exception: Incompatible function arguments. The following argument types are supported: Caught expected exception: Incompatible function arguments. The following argument types are supported:
1. (x : int = 100L, y : int = 200L) -> None 1. (x : int = 100L, y : int = 200L) -> NoneType

View File

@ -4,7 +4,7 @@ Molly is a dog
Molly is a dog Molly is a dog
Woof! Woof!
The following error is expected: Incompatible function arguments. The following argument types are supported: The following error is expected: Incompatible function arguments. The following argument types are supported:
1. (Dog) -> None 1. (Dog) -> NoneType
Callback function 1 called! Callback function 1 called!
False False

View File

@ -235,7 +235,7 @@ public:
Py_INCREF(Py_None); Py_INCREF(Py_None);
return Py_None; return Py_None;
} }
PYBIND11_TYPE_CASTER(void_type, _("None")); PYBIND11_TYPE_CASTER(void_type, _("NoneType"));
}; };
template <> class type_caster<void> : public type_caster<void_type> { }; template <> class type_caster<void> : public type_caster<void_type> { };