-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
14 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* Author: Martin Paces <[email protected]> | ||
* | ||
*----------------------------------------------------------------------------- | ||
* Copyright (C) 2014 EOX IT Services GmbH | ||
* Copyright (C) 2014-2022 EOX IT Services GmbH | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -113,28 +113,18 @@ static PyObject* init_module(void) | |
|
||
/* module metadata */ | ||
set_dict_item_str_str(dict, "__author__", "Martin Paces ([email protected])"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2014 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2014-2022 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__licence__", "EOX licence (MIT style)"); | ||
set_dict_item_str_str(dict, "__version__", VERSION); | ||
|
||
exit: | ||
return module; | ||
} | ||
|
||
#if PY_MAJOR_VERSION == 2 | ||
|
||
PyMODINIT_FUNC init_pymm(void) | ||
{ | ||
import_array(); | ||
init_module(); | ||
} | ||
|
||
#else | ||
/*---------------------------------------------------------------------------*/ | ||
|
||
PyObject* PyInit__pymm(void) | ||
{ | ||
import_array(); | ||
return init_module(); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* Author: Martin Paces <[email protected]> | ||
* | ||
*----------------------------------------------------------------------------- | ||
* Copyright (C) 2015 EOX IT Services GmbH | ||
* Copyright (C) 2015-2022 EOX IT Services GmbH | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -80,7 +80,7 @@ static PyObject* init_module(void) | |
|
||
/* metadata */ | ||
set_dict_item_str_str(dict, "__author__", "Martin Paces ([email protected])"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2015 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2015-2022 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__licence__", "EOX licence (MIT style)"); | ||
set_dict_item_str_str(dict, "__version__", VERSION); | ||
|
||
|
@@ -90,20 +90,8 @@ static PyObject* init_module(void) | |
|
||
/*---------------------------------------------------------------------------*/ | ||
|
||
#if PY_MAJOR_VERSION == 2 | ||
|
||
PyMODINIT_FUNC init_pyqd(void) | ||
{ | ||
import_array(); | ||
init_module(); | ||
} | ||
|
||
#else | ||
|
||
PyObject* PyInit__pyqd(void) | ||
{ | ||
import_array(); | ||
return init_module(); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* Author: Martin Paces <[email protected]> | ||
* | ||
*----------------------------------------------------------------------------- | ||
* Copyright (C) 2017 EOX IT Services GmbH | ||
* Copyright (C) 2017-2022 EOX IT Services GmbH | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -70,28 +70,18 @@ static PyObject* init_module(void) | |
|
||
/* module metadata */ | ||
set_dict_item_str_str(dict, "__author__", "Martin Paces ([email protected])"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2017 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2017-2022 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__licence__", "EOX licence (MIT style)"); | ||
set_dict_item_str_str(dict, "__version__", VERSION); | ||
|
||
exit: | ||
return module; | ||
} | ||
|
||
#if PY_MAJOR_VERSION == 2 | ||
|
||
PyMODINIT_FUNC init_pysunpos(void) | ||
{ | ||
import_array(); | ||
init_module(); | ||
} | ||
|
||
#else | ||
/*---------------------------------------------------------------------------*/ | ||
|
||
PyObject* PyInit__pysunpos(void) | ||
{ | ||
import_array(); | ||
return init_module(); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* Author: Martin Paces <[email protected]> | ||
* | ||
*----------------------------------------------------------------------------- | ||
* Copyright (C) 2018 EOX IT Services GmbH | ||
* Copyright (C) 2018-2022 EOX IT Services GmbH | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -73,28 +73,18 @@ static PyObject* init_module(void) | |
|
||
/* metadata */ | ||
set_dict_item_str_str(dict, "__author__", "Martin Paces ([email protected])"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2018 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__copyright__", "Copyright (C) 2018-2022 EOX IT Services GmbH"); | ||
set_dict_item_str_str(dict, "__licence__", "EOX licence (MIT style)"); | ||
set_dict_item_str_str(dict, "__version__", VERSION); | ||
|
||
exit: | ||
return module; | ||
} | ||
|
||
#if PY_MAJOR_VERSION == 2 | ||
|
||
PyMODINIT_FUNC init_pytimeconv(void) | ||
{ | ||
import_array(); | ||
init_module(); | ||
} | ||
|
||
#else | ||
/*---------------------------------------------------------------------------*/ | ||
|
||
PyObject* PyInit__pytimeconv(void) | ||
{ | ||
import_array(); | ||
return init_module(); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters