mirror of
https://github.com/RYDE-WORK/pybind11.git
synced 2026-01-20 05:33:38 +08:00
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.
22 lines
800 B
Plaintext
22 lines
800 B
Plaintext
Value constructor: Creating a sequence with 5 entries
|
|
s = <example.Sequence object at 0x10c786c70>
|
|
len(s) = 5
|
|
s[0], s[3] = 0.000000 0.000000
|
|
12.34 in s: False
|
|
12.34 in s: True
|
|
s[0], s[3] = 12.340000 56.779999
|
|
Value constructor: Creating a sequence with 5 entries
|
|
Move constructor: Creating a sequence with 5 entries
|
|
Freeing a sequence with 0 entries
|
|
Value constructor: Creating a sequence with 5 entries
|
|
rev[0], rev[1], rev[2], rev[3], rev[4] = 0.000000 56.779999 0.000000 0.000000 12.340000
|
|
0.0 56.7799987793 0.0 0.0 12.3400001526
|
|
0.0 56.7799987793 0.0 0.0 12.3400001526
|
|
True
|
|
Value constructor: Creating a sequence with 3 entries
|
|
Freeing a sequence with 3 entries
|
|
2.0 56.7799987793 2.0 0.0 2.0
|
|
Freeing a sequence with 5 entries
|
|
Freeing a sequence with 5 entries
|
|
Freeing a sequence with 5 entries
|