|
| 1 | +/* |
| 2 | + * Copyright 2026 Benoit Chesneau |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
1 | 17 | /** |
2 | 18 | * @file py_convert.c |
3 | 19 | * @brief Bidirectional type conversion between Python and Erlang |
4 | 20 | * @author Benoit Chesneau |
5 | | - * @copyright 2026 Benoit Chesneau. Licensed under Apache License 2.0. |
6 | 21 | * |
7 | 22 | * @ingroup convert |
8 | 23 | * |
|
31 | 46 | * @note This file is included from py_nif.c (single compilation unit) |
32 | 47 | */ |
33 | 48 |
|
34 | | -/* |
35 | | - * Copyright 2026 Benoit Chesneau |
36 | | - * |
37 | | - * Licensed under the Apache License, Version 2.0 (the "License"); |
38 | | - * you may not use this file except in compliance with the License. |
39 | | - * You may obtain a copy of the License at |
40 | | - * |
41 | | - * http://www.apache.org/licenses/LICENSE-2.0 |
42 | | - * |
43 | | - * Unless required by applicable law or agreed to in writing, software |
44 | | - * distributed under the License is distributed on an "AS IS" BASIS, |
45 | | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
46 | | - * See the License for the specific language governing permissions and |
47 | | - * limitations under the License. |
48 | | - */ |
49 | | - |
50 | 49 | /* ============================================================================ |
51 | 50 | * Python to Erlang Conversion |
52 | 51 | * ============================================================================ */ |
|
0 commit comments