File: import.py

package info (click to toggle)
python-persistent 4.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 664 kB
  • ctags: 1,304
  • sloc: python: 4,899; ansic: 2,787; 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)