new __new__ syntax

This commit is contained in:
Massimo Di Pierro
2011-12-31 11:48:18 -06:00
parent 5b701ea095
commit 31f6c88b9d
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.4 (2011-12-30 22:48:16) stable
Version 1.99.4 (2011-12-31 11:47:41) stable
+1 -1
View File
@@ -986,7 +986,7 @@ class SQLFORM(FORM):
table = TABLE()
for id,a,b,c in xfields:
raw_b = self.field_parent[id] = b
newrows = self.formstyle(id,a,raw_b,c)
newrows = self.formstyle(id,a,raw_b,c)
if type(newrows).__name__ != "tuple":
newrows = [newrows]
for newrow in newrows:
+2 -2
View File
@@ -4074,7 +4074,7 @@ class PluginManager(object):
True
"""
instances = {}
def __new__(cls,*a,**b):
def __new__(cls):
id = thread.get_ident()
lock = thread.allocate_lock()
try:
@@ -4082,7 +4082,7 @@ class PluginManager(object):
try:
return cls.instances[id]
except KeyError:
instance = object.__new__(cls,*a,**b)
instance = object.__new__(cls)
cls.instances[id] = instance
return instance
finally: