mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	#6938: "ident" is always a string, so use a format code which works.
This commit is contained in:
		
							parent
							
								
									097f70881a
								
							
						
					
					
						commit
						c40e60e5e5
					
				
					 2 changed files with 4 additions and 1 deletions
				
			
		|  | @ -410,7 +410,7 @@ def decref(self, c, ident): | ||||||
|             self.id_to_refcount[ident] -= 1 |             self.id_to_refcount[ident] -= 1 | ||||||
|             if self.id_to_refcount[ident] == 0: |             if self.id_to_refcount[ident] == 0: | ||||||
|                 del self.id_to_obj[ident], self.id_to_refcount[ident] |                 del self.id_to_obj[ident], self.id_to_refcount[ident] | ||||||
|                 util.debug('disposing of obj with id %d', ident) |                 util.debug('disposing of obj with id %r', ident) | ||||||
|         finally: |         finally: | ||||||
|             self.mutex.release() |             self.mutex.release() | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -376,6 +376,9 @@ Core and Builtins | ||||||
| Library | Library | ||||||
| ------- | ------- | ||||||
| 
 | 
 | ||||||
|  | - Issue #6938: Fix a TypeError in string formatting of a multiprocessing | ||||||
|  |   debug message. | ||||||
|  | 
 | ||||||
| - Issue #6635: Fix profiler printing usage message. | - Issue #6635: Fix profiler printing usage message. | ||||||
| 
 | 
 | ||||||
| - Issue #6856: Add a filter keyword argument to TarFile.add(). | - Issue #6856: Add a filter keyword argument to TarFile.add(). | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl