Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
sys.path.append('.')
|
|
|
|
|
|
|
|
from example import test_function
|
|
|
|
from example import some_constant
|
|
|
|
from example import EMyEnumeration
|
2016-08-04 03:45:08 +00:00
|
|
|
from example import ECMyEnum, test_ecenum
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
from example import EFirstEntry
|
|
|
|
from example import ExampleWithEnum
|
|
|
|
from example import return_bytes
|
|
|
|
from example import print_bytes
|
|
|
|
|
|
|
|
print(EMyEnumeration)
|
|
|
|
print(EMyEnumeration.EFirstEntry)
|
|
|
|
print(EMyEnumeration.ESecondEntry)
|
|
|
|
print(EFirstEntry)
|
|
|
|
|
|
|
|
print(test_function())
|
|
|
|
print(test_function(7))
|
|
|
|
print(test_function(EMyEnumeration.EFirstEntry))
|
|
|
|
print(test_function(EMyEnumeration.ESecondEntry))
|
2016-08-04 03:45:08 +00:00
|
|
|
test_ecenum(ECMyEnum.Three)
|
2016-08-04 04:21:37 +00:00
|
|
|
z = ECMyEnum.Two
|
|
|
|
test_ecenum(z)
|
|
|
|
try:
|
|
|
|
z == 2
|
|
|
|
print("Bad: expected a TypeError exception")
|
|
|
|
except TypeError:
|
|
|
|
try:
|
|
|
|
z != 3
|
|
|
|
print("Bad: expected a TypeError exception")
|
|
|
|
except TypeError:
|
|
|
|
print("Good: caught expected TypeError exceptions for scoped enum ==/!= int comparisons")
|
|
|
|
|
|
|
|
y = EMyEnumeration.ESecondEntry
|
|
|
|
try:
|
|
|
|
y == 2
|
|
|
|
y != 2
|
|
|
|
print("Good: no TypeError exception for unscoped enum ==/!= int comparisions")
|
|
|
|
except TypeError:
|
|
|
|
print("Bad: caught TypeError exception for unscoped enum ==/!= int comparisons")
|
|
|
|
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
print("enum->integer = %i" % int(EMyEnumeration.ESecondEntry))
|
|
|
|
print("integer->enum = %s" % str(EMyEnumeration(2)))
|
|
|
|
|
|
|
|
print("A constant = " + str(some_constant))
|
|
|
|
|
|
|
|
print(ExampleWithEnum.EMode)
|
|
|
|
print(ExampleWithEnum.EMode.EFirstMode)
|
|
|
|
print(ExampleWithEnum.EFirstMode)
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode)
|
|
|
|
|
|
|
|
print("Equality test 1: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) ==
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode)))
|
|
|
|
|
|
|
|
print("Inequality test 1: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) !=
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode)))
|
|
|
|
|
|
|
|
print("Equality test 2: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) ==
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode)))
|
|
|
|
|
|
|
|
print("Inequality test 2: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) !=
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode)))
|
|
|
|
|
2016-08-02 14:58:32 +00:00
|
|
|
print("Equality test 3: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) ==
|
|
|
|
int(ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode))))
|
|
|
|
|
|
|
|
print("Inequality test 3: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) !=
|
|
|
|
int(ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode))))
|
|
|
|
|
|
|
|
print("Equality test 4: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) ==
|
|
|
|
int(ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode))))
|
|
|
|
|
|
|
|
print("Inequality test 4: " + str(
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode) !=
|
|
|
|
int(ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode))))
|
|
|
|
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
x = {
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode): 1,
|
|
|
|
ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode): 2
|
|
|
|
}
|
|
|
|
|
|
|
|
x[ExampleWithEnum.test_function(ExampleWithEnum.EFirstMode)] = 3
|
|
|
|
x[ExampleWithEnum.test_function(ExampleWithEnum.ESecondMode)] = 4
|
|
|
|
print("Hashing test = " + str(x))
|
|
|
|
|
|
|
|
print_bytes(return_bytes())
|