Re: [C++-sig] indexing suite and py++

2009-04-16 Thread Michał Nowotka
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

Re: [C++-sig] indexing suite and py++

2009-04-15 Thread Roman Yakovenko
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

Re: [C++-sig] indexing suite and py++

2009-04-13 Thread Michał Nowotka
>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,

Re: [C++-sig] indexing suite and py++

2009-04-08 Thread Roman Yakovenko
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: > >        

[C++-sig] indexing suite and py++

2009-04-08 Thread Michał Nowotka
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