Message1456
 
            
            
            
 
   
   
 
 
  
      
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):
 | 
   
  
 
|
 
| Date | 
User | 
Action | 
Args | 
 
| 2008-02-20 17:17:43 | admin | link | issue1659616 messages |  
| 2008-02-20 17:17:43 | admin | create |  |  
 
 
 |