Message1456

Author pqu
Recipients
Date 2007-02-14.11:48:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The Patch:

Index: Tools/jythonc/proxies.py
===================================================================
--- Tools/jythonc/proxies.py    (revision 3105)
+++ Tools/jythonc/proxies.py    (working copy)
@@ -252,6 +252,12 @@
         for name in names:
             for sig, (access, ret, throws) in self.jmethods[name].items():
                 #print name, access, isProtected(access), isFinal(access)
+                
+                if isTransient(access):
+                    # transient uses the same bits as vararg, transient make no sense for methods
+                    # same problem might occur with bridge methods and volatile
+                    access &= ~TRANSIENT
+                
                 if isProtected(access):
                     supername = name
                     if isFinal(access):
History
Date User Action Args
2008-02-20 17:17:43adminlinkissue1659616 messages
2008-02-20 17:17:43admincreate