mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	bug [ 729103 ] Cannot retrieve name of super object
This commit is contained in:
		
							parent
							
								
									ce7da6c5e9
								
							
						
					
					
						commit
						8b813db2ef
					
				
					 2 changed files with 6 additions and 3 deletions
				
			
		|  | @ -1079,7 +1079,7 @@ def docmodule(self, object, name=None, mod=None): | |||
|         if data: | ||||
|             contents = [] | ||||
|             for key, value in data: | ||||
|                 contents.append(self.docother(value, key, name, 70)) | ||||
|                 contents.append(self.docother(value, key, name, maxlen=70)) | ||||
|             result = result + self.section('DATA', join(contents, '\n')) | ||||
| 
 | ||||
|         if hasattr(object, '__version__'): | ||||
|  | @ -1164,7 +1164,7 @@ def spilldata(msg, attrs, predicate): | |||
|                     else: | ||||
|                         doc = None | ||||
|                     push(self.docother(getattr(object, name), | ||||
|                                        name, mod, 70, doc) + '\n') | ||||
|                                        name, mod, maxlen=70, doc=doc) + '\n') | ||||
|             return attrs | ||||
| 
 | ||||
|         attrs = filter(lambda (name, kind, cls, value): visiblename(name), | ||||
|  | @ -1272,7 +1272,7 @@ def docproperty(self, object, name=None, mod=None, cl=None): | |||
|         """Produce text documentation for a property.""" | ||||
|         return self._docdescriptor(name, object, mod) | ||||
| 
 | ||||
|     def docother(self, object, name=None, mod=None, maxlen=None, doc=None): | ||||
|     def docother(self, object, name=None, mod=None, parent=None, maxlen=None, doc=None): | ||||
|         """Produce text documentation for a data object.""" | ||||
|         repr = self.repr(object) | ||||
|         if maxlen: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl