summaryrefslogtreecommitdiff
path: root/weave/swigptr.py
Commit message (Collapse)AuthorAgeFilesLines
* Moved weaveTravis Oliphant2005-09-261-427/+0
|
* when I moved from a swigptr.c to be a string in a swigptr.py file, I forgot ↵Eric Jones2003-03-101-3/+3
| | | | to escape \n characters so that they would not be interpreted by python and would actually get written into the generated C++ file. This patch fixes that.
* converted format of file from DOS to UNIX line endings.Eric Jones2003-03-101-47/+47
|
* Moved code in swigptr.c into a python string, swigptr.swigptr_code. This ↵Eric Jones2003-03-071-0/+427
makes it where the code doesn't have to be read out of a file in the directory path and makes it easier on py2exe like programs that bundle code into an exe file. [see bug 37] I think weave will still not work in bundled applications because it referes to a lot of other external files in the scxx directory and blitz directories. Still, these are not read during import, so they at least don't cause the scipy import to fail. We should look for a way to make weave work from py2exe binaries in the future.