~certify-web-dev/twisted/certify-staging

« back to all changes in this revision

Viewing changes to twisted/spread/refpath.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-01-02 19:38:17 UTC
  • mfrom: (2.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100102193817-jphp464ppwh7dulg
Tags: 9.0.0-1
* python-twisted: Depend on the python-twisted-* 9.0 packages.
* python-twisted: Depend on python-zope.interface only. Closes: #557781.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
 
1
# Copyright (c) 2001-2009 Twisted Matrix Laboratories.
2
2
# See LICENSE for details.
3
3
 
4
 
 
5
 
__version__ = "$Revision: 1.17 $"[11:-2]
6
 
 
7
4
"""
8
5
Path-based references for PB, and other reference-based protocols.
9
6
 
10
7
Maintainer: Glyph Lefkowitz
11
 
 
12
 
Future Plans: None at this point besides a final overview and finalization
13
 
pass.
14
8
"""
15
9
 
16
10
 
 
11
from copy import copy
 
12
import os, warnings
 
13
 
17
14
from twisted.python import log
18
 
 
19
 
from flavors import Referenceable, Viewable
20
 
from copy import copy
21
 
import os
22
 
 
23
 
 
 
15
from twisted.spread.flavors import Referenceable, Viewable
 
16
 
 
17
warnings.warn(
 
18
    "twisted.spread.refpath is deprecated since Twisted 9.0.",
 
19
    category=DeprecationWarning, stacklevel=2)
24
20
 
25
21
### "Server"-side objects
26
22