[Checkins] SVN: z3c.saconfig/trunk/src/z3c/saconfig/zcml.py Use 'Integer' instead of 'Int'.

Martijn Faassen faassen at startifact.com
Fri Jun 26 08:10:54 EDT 2009


Log message for revision 101288:
  Use 'Integer' instead of 'Int'.
  

Changed:
  U   z3c.saconfig/trunk/src/z3c/saconfig/zcml.py

-=-
Modified: z3c.saconfig/trunk/src/z3c/saconfig/zcml.py
===================================================================
--- z3c.saconfig/trunk/src/z3c/saconfig/zcml.py	2009-06-26 12:06:41 UTC (rev 101287)
+++ z3c.saconfig/trunk/src/z3c/saconfig/zcml.py	2009-06-26 12:10:54 UTC (rev 101288)
@@ -27,19 +27,19 @@
         required=False,
         default=False)
 
-    pool_size = zope.schema.Integer(
+    pool_size = zope.schema.Int(
         title=u"Pool size",
         description=u"Number of connections to keep open inside the connection pool.",
         required=False,
         default=5)
         
-    pool_recycle = zope.schema.Integer(
+    pool_recycle = zope.schema.Int(
         title=u"Pool recycle",
         description=u"Recycle connections after the given number of seconds have passed.",
         required=False,
         default=-1)
 
-    pool_timeout = zope.schema.Integer(
+    pool_timeout = zope.schema.Int(
         title=u"Pool timeout",
         description=u"Number of seconds to wait before giving up on getting a connection from the pool.",
         required=False,



More information about the Checkins mailing list