File: import.py

package info (click to toggle)
python-persistent 4.6.4-0.2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 764 kB
  • sloc: python: 5,603; ansic: 2,981; makefile: 120
file content (15 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (5)
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)