File: import.py

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

import persistent
print(persistent)

# Make sure the extension modules can be imported.

import persistent._ring
print(persistent._ring)

import persistent._timestamp
print(persistent._timestamp)

import persistent.cPersistence
print(persistent.cPersistence)

import persistent.cPickleCache
print(persistent.cPickleCache)