-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean cython-lint warnings + some typos
- Loading branch information
Showing
5 changed files
with
15 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Copied from https://github.com/sagemath/cysignals/blob/master/src/cysignals/memory.pxd. | ||
# Note that this is no longer interruption safe, as we efficiently remove ``sig_block``/``sig_unblock``. | ||
# Copied from | ||
# https://github.com/sagemath/cysignals/blob/master/src/cysignals/memory.pxd | ||
|
||
# Note that this is no longer interruption safe, | ||
# as we efficiently remove ``sig_block``/``sig_unblock``. | ||
""" | ||
Memory allocation functions which are interrupt-safe | ||
|
@@ -8,7 +11,7 @@ functions. The ``check_`` variants check the return value and raise | |
``MemoryError`` in case of failure. | ||
""" | ||
|
||
#***************************************************************************** | ||
# **************************************************************************** | ||
# Copyright (C) 2011-2016 Jeroen Demeyer <[email protected]> | ||
# | ||
# cysignals is free software: you can redistribute it and/or modify it | ||
|
@@ -22,9 +25,9 @@ functions. The ``check_`` variants check the return value and raise | |
# GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with cysignals. If not, see <http://www.gnu.org/licenses/>. | ||
# along with cysignals. If not, see <https://www.gnu.org/licenses/>. | ||
# | ||
#***************************************************************************** | ||
# **************************************************************************** | ||
|
||
|
||
cimport cython | ||
|
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