cleanup stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 22 Jun 2010 10:29:04 +0200
branchstable
changeset 5824 de9b7e88660e
parent 5817 e4207221f3f5
child 5825 2daf1ac79d5c
cleanup
server/pool.py
server/sources/__init__.py
server/sources/extlite.py
server/sources/native.py
web/views/debug.py
--- a/server/pool.py	Mon Jun 21 16:01:15 2010 +0200
+++ b/server/pool.py	Tue Jun 22 10:29:04 2010 +0200
@@ -19,9 +19,8 @@
 connections pools, each of them dealing with a set of connections on each source
 used by the repository. A connections pools (`ConnectionsPool`) is an
 abstraction for a group of connection to each source.
-
+"""
 
-"""
 __docformat__ = "restructuredtext en"
 
 import sys
--- a/server/sources/__init__.py	Mon Jun 21 16:01:15 2010 +0200
+++ b/server/sources/__init__.py	Tue Jun 22 10:29:04 2010 +0200
@@ -15,9 +15,8 @@
 #
 # You should have received a copy of the GNU Lesser General Public License along
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
-"""cubicweb server sources support
+"""cubicweb server sources support"""
 
-"""
 __docformat__ = "restructuredtext en"
 
 from os.path import join, splitext
--- a/server/sources/extlite.py	Mon Jun 21 16:01:15 2010 +0200
+++ b/server/sources/extlite.py	Tue Jun 22 10:29:04 2010 +0200
@@ -16,8 +16,8 @@
 # You should have received a copy of the GNU Lesser General Public License along
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
 """provide an abstract class for external sources using a sqlite database helper
+"""
 
-"""
 __docformat__ = "restructuredtext en"
 
 
--- a/server/sources/native.py	Mon Jun 21 16:01:15 2010 +0200
+++ b/server/sources/native.py	Tue Jun 22 10:29:04 2010 +0200
@@ -22,8 +22,8 @@
   from which it comes from) are stored in a varchar column encoded as a base64
   string. This is because it should actually be Bytes but we want an index on
   it for fast querying.
+"""
 
-"""
 from __future__ import with_statement
 
 __docformat__ = "restructuredtext en"
--- a/web/views/debug.py	Mon Jun 21 16:01:15 2010 +0200
+++ b/web/views/debug.py	Tue Jun 22 10:29:04 2010 +0200
@@ -15,10 +15,8 @@
 #
 # You should have received a copy of the GNU Lesser General Public License along
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
-"""management and error screens
+"""management and error screens"""
 
-
-"""
 __docformat__ = "restructuredtext en"
 
 from time import strftime, localtime