{5} Assigned, Active Tickets by Owner (Full Description) (4 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

cdavid

Ticket Summary Component Milestone Type Created
Description
#6 Give access to error log of sndfile audiolab audiolab 1.0 enhancement 07/16/07

libsndfile has an error log. It would be useful to make it available to python.


#14 Improving testing framework learn enhancement 07/21/07

Right now, the basic framework for testing is in place: for each new package which needs to be tested separately, you add the following function:

def test_suite(*args):
    # XXX: this is to avoid recursive call to itself. This is an horrible hack,
    # I have no idea why infinite recursion happens otherwise.
    if len(args) > 0:
        import unittest
        return unittest.TestSuite()
    return NumpyTest().test(level = -10)

The problem is that it is a bit difficult to control which tests are executed with the current NumpyTest? class. Maybe changes have to be made in this class instead.


#4 Finish convertion to numpy doc audiolab audiolab 1.0 defect 07/16/07

Using a config file for epydoc is possible: see pymc.


#26 ImportError: No module named ga.tree learn learn: first scikits release defect 07/22/07
>>> from scikits.learn.machine import ga
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib64/python2.5/site-packages/scikits/learn/machine/ga/__init__.py", line 11, in <module>
    import gene
  File "/usr/local/lib64/python2.5/site-packages/scikits/learn/machine/ga/gene.py", line 20, in <module>
    from scipy.ga.tree import tree_node
ImportError: No module named ga.tree

Note: See TracReports for help on using and creating reports.