Skip to content

Commit

Permalink
fixed some curly quotes and updated pithy description
Browse files Browse the repository at this point in the history
  • Loading branch information
yig committed Aug 30, 2017
1 parent 891d8b7 commit ce58b6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sparseqr/sparseqr.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''
Author: Yotam Gingold <yotam (strudel) yotamgingold.com>
License: Public Domain [CC0](http://creativecommons.org/publicdomain/zero/1.0/)
Description: Wrapper for SuiteSparse qr() function. Matlab has it, Python should have it, too.
Description: Wrapper for SuiteSparse qr() and solve() functions. Matlab and Julia have it, Python should have it, too.
'''

from __future__ import print_function, division, absolute_import
Expand All @@ -27,7 +27,7 @@
#
# Note that some bundler tools that try to find all modules used by a project, like PyInstaller,
# will miss _cffi_backend in the out-of-line mode because your program contains no explicit
# import cffi or import _cffi_backend. You need to add _cffi_backend explicitly (as a hidden import
# import cffi or import _cffi_backend. You need to add _cffi_backend explicitly (as a "hidden import"
# in PyInstaller, but it can also be done more generally by adding the line import _cffi_backend in your main program).
#
import _cffi_backend
Expand Down
2 changes: 1 addition & 1 deletion sparseqr/sparseqr_gen.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''
Author: Yotam Gingold <yotam (strudel) yotamgingold.com>
License: Public Domain [CC0](http://creativecommons.org/publicdomain/zero/1.0/)
Description: Wrapper for SuiteSparse qr() function. Matlab has it, Python should have it, too.
Description: Wrapper for SuiteSparse qr() and solve() functions. Matlab and Julia have it, Python should have it, too.
'''

from __future__ import print_function, division, absolute_import
Expand Down

0 comments on commit ce58b6d

Please sign in to comment.