File: README.Debian

package info (click to toggle)
egenix-mx-base 2.0.6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,028 kB
  • ctags: 4,762
  • sloc: ansic: 14,965; python: 11,739; sh: 313; makefile: 117
file content (14 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
The python*-egenix-mx* packages supersede the old python-mx* packages
found in earlier Debian versions.

A notable difference:

The modules (e.g. DateTime) now have the prefix "mx." in the
namespace.  So, for example, if you have used the old DateTime module
in a program, you should instead use mx.Datetime.  E.g.:

    # Old:
    import DateTime

    # New:
    from mx import DateTime