File: import.py

package info (click to toggle)
python-persistent 6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 772 kB
  • sloc: python: 5,536; ansic: 2,849; makefile: 24
file content (15 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from __future__ import print_function

import persistent
print(persistent)

# Make sure the extension modules can be imported.

import persistent._timestamp
print(persistent._timestamp)

import persistent.cPersistence
print(persistent.cPersistence)

import persistent.cPickleCache
print(persistent.cPickleCache)