[Assorted-commits] SF.net SVN: assorted: [249] python-commons/trunk/src/commons/seqs.py
Brought to you by:
yangzhang
|
From: <yan...@us...> - 2008-01-20 06:25:48
|
Revision: 249
http://assorted.svn.sourceforge.net/assorted/?rev=249&view=rev
Author: yangzhang
Date: 2008-01-19 22:25:53 -0800 (Sat, 19 Jan 2008)
Log Message:
-----------
fixed missing import
Modified Paths:
--------------
python-commons/trunk/src/commons/seqs.py
Modified: python-commons/trunk/src/commons/seqs.py
===================================================================
--- python-commons/trunk/src/commons/seqs.py 2008-01-20 06:25:30 UTC (rev 248)
+++ python-commons/trunk/src/commons/seqs.py 2008-01-20 06:25:53 UTC (rev 249)
@@ -1,7 +1,7 @@
# -*- mode: python; tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4; -*-
# vim:ft=python:et:sw=4:ts=4
-from __future__ import with_statement
+from __future__ import ( absolute_import, with_statement )
from cStringIO import StringIO
from cPickle import *
@@ -9,6 +9,7 @@
from contextlib import closing
from itertools import ( chain, count, ifilterfalse, islice,
izip, tee )
+from .log import warning
"""
Sequences, streams, and generators.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|