2009/4/16 Roman Yakovenko :
> ! test (deepcopy_tester.tester_t) - FAIL
>I would like to see the error. Basically that test checks that
>exception is raised in "copy.deepcopy" function.
Here you are:
140736560794048
140736560794032
140736560794016
FAIL
2009/4/13 Michał Nowotka :
> Ok, but now I want to run all test included.
Okey.
> First of all I can't do it because of an error:
>
> Traceback (most recent call last):
> File "/home/mnowotka/pygccxml/pyplusplus_dev/unittests/test_all.py",
> line 113, in
> import indexing_suites_v2_bug_teste
>I created the following test case and it works:
>http://pygccxml.svn.sourceforge.net/viewvc/pygccxml?view=rev&revision=1699
>
>I tested it on Wndows, VS 2003, using pygccxml and Py++ SVN version
>and boost version 1.37. I believe the same code will work on Linux
>too.
>
>Can you verify this?
Yes,
2009/4/8 Michał Nowotka :
> Hello,
Good evening
> I want to expose following classes:
>
> class A
> {
> public:
> A(int a, int b)
> :a_(a),b_(b)
> {}
> int a_;
> int b_;
>
> int compute(){return a_ + b_;}
>
> };
>
> class C : public A
> {
>
> public:
>
>
Hello,
I want to expose following classes:
class A
{
public:
A(int a, int b)
:a_(a),b_(b)
{}
int a_;
int b_;
int compute(){return a_ + b_;}
};
class C : public A
{
public:
C(int a, int b)
:A(a,b){}
};
struct TypeExposer // I have to ad