/usr/share/pyshared/pandas/tests/test_functions.py is in python-pandas 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | from pandas import Index, isnull
import pandas.sandbox.functions as fns
import numpy as np
import unittest
import numpy as np
class TestReductions(unittest.TestCase):
def setUp(self):
self.index = Index(np.arange(100))
pass
def test_upsample_mean(self):
pass
def test_upsample_max(self):
pass
def test_upsample_min(self):
pass
def test_upsample_generic(self):
pass
if __name__ == '__main__':
import nose
nose.runmodule(argv=[__file__,'-vvs','-x','--pdb', '--pdb-failure'],
exit=False)
|