Beman Dawes
8cd4ff8950
Remove extra ) from prior commit
...
[SVN r41355]
2007-11-25 13:56:09 +00:00
Dave Abrahams
26f77691ee
Attempt SunPro workaround
...
[SVN r41352]
2007-11-25 09:02:01 +00:00
Nikolay Mladenov
e14c702a40
added forgotten array_object_manager_traits::get_pytype
...
[SVN r40889]
2007-11-07 16:06:55 +00:00
Dave Abrahams
6a3085ad5d
Merging some of the more obvious changes from RC_1_34_0
...
[SVN r40714]
2007-11-03 03:25:13 +00:00
Joel de Guzman
190d0d7ea6
replacing reinterpret_cast with static_cast<PySliceObject*>(static_cast<void*>(i))
...
[SVN r40712]
2007-11-03 03:05:26 +00:00
Ralf W. Grosse-Kunstleve
abc4abf84a
gcc 4.3.0 compatibility (resolves new "changes meaning" error)
...
[SVN r39434]
2007-09-20 23:20:45 +00:00
Nikolay Mladenov
62ef542eaf
fixed problem reported by Neal Becker; added a test case
...
[SVN r39223]
2007-09-12 21:31:39 +00:00
Ralf W. Grosse-Kunstleve
5809078ba9
Patches by Nikolay Mladenov (nickm at sitius com): new pythonic signatures; docstring support for enums; fix unrelated Visual C++ 6 problem
...
[SVN r39191]
2007-09-11 16:53:50 +00:00
Thomas Witt
a5706ec3b0
Fixes for #583 .
...
[SVN r37929]
2007-06-07 18:08:54 +00:00
Stefan Seefeld
b130c93af6
Backport new eval() function from HEAD.
...
[SVN r37693]
2007-05-15 13:43:52 +00:00
Stefan Seefeld
fe23d9885f
Add new eval() function.
...
[SVN r37560]
2007-05-02 13:11:20 +00:00
Ralf W. Grosse-Kunstleve
a6125a3632
merged from trunk
...
[SVN r37520]
2007-04-27 22:16:47 +00:00
Ralf W. Grosse-Kunstleve
e7ee17b71b
MIPSpro: undo Python 2.5.1 define (the define leads to many warnings)
...
[SVN r37502]
2007-04-25 04:45:17 +00:00
Dave Abrahams
4827ae73d5
Trivial change to force a rebuild on incremental testers' machines.
...
[SVN r37327]
2007-04-02 00:54:48 +00:00
Dave Abrahams
ea4e6c0a4c
Trivial change to force a rebuild on incremental testers' machines.
...
[SVN r37311]
2007-03-28 12:44:57 +00:00
Dave Abrahams
7cd7f6d8ee
Trivial change to force a rebuild on incremental testers' machines.
...
[SVN r37287]
2007-03-26 15:47:05 +00:00
Dave Abrahams
4c39e8c990
Making a trivial change to trigger a test run from incremental testers
...
[SVN r37278]
2007-03-24 18:57:19 +00:00
Dave Abrahams
c73ad50286
Roll back improved error message because it causes problems for vc6/7
...
[SVN r36435]
2006-12-16 22:00:35 +00:00
Dave Abrahams
0910710ac4
Correct class/function mismatches for MSVC and bring across
...
documentation tweaks from HEAD.
[SVN r36355]
2006-12-13 15:08:26 +00:00
Dave Abrahams
c2dd9fa833
Fix auto-link to look at the right variable.
...
[SVN r36319]
2006-12-11 03:00:26 +00:00
Dave Abrahams
0c4ebef579
Fix auto-link to look at the right variable.
...
Make boost-build.jam point at the v2 Boost.
[SVN r36318]
2006-12-11 02:54:48 +00:00
Dave Abrahams
b085121369
merged from trunk
...
[SVN r36292]
2006-12-07 17:45:17 +00:00
Dave Abrahams
8a4590b2ef
Enable auto-linking
...
[SVN r36291]
2006-12-07 17:44:05 +00:00
Dave Abrahams
6d2ee96ba3
improve error message
...
[SVN r35822]
2006-11-03 16:34:53 +00:00
Stefan Seefeld
ca91dc828e
Fix symbol visibility.
...
[SVN r35754]
2006-10-27 21:19:47 +00:00
Stefan Seefeld
a74c8e3da3
Fix symbol visibility.
...
[SVN r35754]
2006-10-27 21:19:47 +00:00
Dave Abrahams
c3bd0fcbad
Make object comparison operators return object instead of bool, to
...
accomodate strange beasts like numarray arrays that return arrays that
can't be used as truth values from their comparison ops.
Fix numpy test for portability with old doctest (again!)
[SVN r35572]
2006-10-12 09:07:07 +00:00
Dave Abrahams
d61909d3ea
Make object comparison operators return object instead of bool, to
...
accomodate strange beasts like numarray arrays that return arrays that
can't be used as truth values from their comparison ops.
Fix numpy test for portability with old doctest (again!)
[SVN r35572]
2006-10-12 09:07:07 +00:00
Dave Abrahams
9b67f0447d
Suppress a couple of msvc class/struct warnings
...
[SVN r35567]
2006-10-12 06:41:18 +00:00
Dave Abrahams
49d4aac8ec
Fix lots of bugs in the numeric interface and tests.
...
Tests:
* Coerce a result to bool to deal with Python's new Bool type
* Better reporting of mismatches in expected and received results
* Remove bogus nullary y.astype() call
* Fix all uses of trace and diagonal so they don't cause errors
* Use appropriate typecodes
* Use doctest detailed API to run just the relevant tests
* Factor out error handling from macro
API:
* Added get_module_name() function to get current numeric module
* new_(x) now returns an array instead of object
* Fixed the signatures of the factory() family of functions
* Updated docs accordingly.
[SVN r35528]
2006-10-09 04:05:25 +00:00
Dave Abrahams
d78836b828
Fix lots of bugs in the numeric interface and tests.
...
Tests:
* Coerce a result to bool to deal with Python's new Bool type
* Better reporting of mismatches in expected and received results
* Remove bogus nullary y.astype() call
* Fix all uses of trace and diagonal so they don't cause errors
* Use appropriate typecodes
* Use doctest detailed API to run just the relevant tests
* Factor out error handling from macro
API:
* Added get_module_name() function to get current numeric module
* new_(x) now returns an array instead of object
* Fixed the signatures of the factory() family of functions
* Updated docs accordingly.
[SVN r35528]
2006-10-09 04:05:25 +00:00
Dave Abrahams
7a59131d37
Fix missing #include
...
[SVN r35524]
2006-10-08 05:17:20 +00:00
Dave Abrahams
545be29ad3
(hopefully) grab the last bit of logic from HEAD for a bugfix I've been trying to apply to the branch for days(!)
...
[SVN r35436]
2006-10-01 18:25:44 +00:00
Dave Abrahams
315c3d50ee
Apply missing elements of previously-"applied" bug fix.
...
[SVN r35421]
2006-09-29 15:45:29 +00:00
Dave Abrahams
d5219979a4
Fix bugs uncovered by Roman Yakovenko
...
[SVN r35410]
2006-09-29 02:09:13 +00:00
Dave Abrahams
94500ae36d
Tests and fixes for a bad interaction between wrapper<> and operators
...
support. "self" arguments weren't getting unwrapped properly.
[SVN r35365]
2006-09-28 14:41:01 +00:00
Ralf W. Grosse-Kunstleve
4eb286a034
ssize_t patches merged from HEAD
...
[SVN r35327]
2006-09-26 00:48:44 +00:00
nobody
a824230155
This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.
...
[SVN r35326]
2006-09-26 00:25:08 +00:00
Ralf W. Grosse-Kunstleve
c6f2aa4ef2
new boost/python/ssize_t.hpp; avoids potential clash of Py_ssize_t typedef and PY_SSIZE_T_MIN/MAX macros with definitions from other libraries
...
[SVN r35325]
2006-09-26 00:25:07 +00:00
Dave Abrahams
36abcee847
merged from HEAD
...
[SVN r35277]
2006-09-22 15:13:30 +00:00
Dave Abrahams
c7fb2f7047
Attempt GCC-3.4.4 and 4.0.1 workarounds
...
[SVN r35276]
2006-09-22 15:12:04 +00:00
Gottfried Ganßauge
ef62f87963
type object gets initialized. Cross module support works
...
[SVN r35252]
2006-09-21 16:46:21 +00:00
Dave Abrahams
e00a88ff49
Fix inspection issues
...
[SVN r35239]
2006-09-21 02:40:19 +00:00
Dave Abrahams
e70bbe4791
Fix license/copyright.
...
Also port some "glaringly obvious" bugfixes from HEAD. Hope it
doesn't cause problems.
[SVN r35237]
2006-09-20 22:49:18 +00:00
Dave Abrahams
921e306b9a
Fix license/copyright
...
[SVN r35234]
2006-09-20 21:59:03 +00:00
Dave Abrahams
cee8e07046
Checkin missing op_repr definition
...
[SVN r35153]
2006-09-18 02:59:31 +00:00
Dave Abrahams
f5421ca6b2
Default to Python 2.4 in Unix builds
...
Applied contributed patches http://tinyurl.com/ndljr and
http://tinyurl.com/18r
[SVN r35138]
2006-09-16 18:43:53 +00:00
Gottfried Ganßauge
2610eb9acb
Type object for opaque initialized with PyType_Clear.
...
opaque is registered only if not another module has already registered
a conversion for that pointer type.
Doc update.
[SVN r35104]
2006-09-14 05:59:29 +00:00
Gennaro Prota
c54acdb9db
(merge from head)
...
minor fix: violation of min/max guidelines
[SVN r34718]
2006-07-24 22:06:09 +00:00
Gennaro Prota
f332ff2d89
minor fix: violation of min/max guidelines
...
[SVN r34717]
2006-07-24 22:04:05 +00:00