~ubuntu-branches/ubuntu/vivid/regina-normal/vivid

« back to all changes in this revision

Viewing changes to python/utilities/pyutilities.cpp

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2013-11-02 11:44:32 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20131102114432-acgci6b1pb2hjl8q
Tags: 4.95-1
* New upstream release.
* The python module is now installed in a standard location beneath
  /usr/lib/python2.7/dist-packages.
* Switched python packaging from python-support to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
void addNBoolSet();
37
37
void addNTriBool();
38
38
void addOSUtils();
 
39
void addStringUtils();
39
40
 
40
41
void addUtilities() {
41
42
    addLocale();
42
43
    addNBoolSet();
43
44
    addNTriBool();
44
45
    addOSUtils();
 
46
    addStringUtils();
45
47
}
46
48