new __new__ syntax
This commit is contained in:
@@ -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
@@ -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
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user