mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Automerge-Triggered-By: GH:asvetlov
(cherry picked from commit b50e5e916a)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
			
			
This commit is contained in:
		
							parent
							
								
									0aa8bbfe1e
								
							
						
					
					
						commit
						cb0683128b
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -259,12 +259,12 @@ def _timer_handle_cancelled(self, handle): | |||
|         raise NotImplementedError | ||||
| 
 | ||||
|     def call_soon(self, callback, *args, context=None): | ||||
|         return self.call_later(0, callback, *args) | ||||
|         return self.call_later(0, callback, *args, context=context) | ||||
| 
 | ||||
|     def call_later(self, delay, callback, *args, context=None): | ||||
|         raise NotImplementedError | ||||
| 
 | ||||
|     def call_at(self, when, callback, *args, cotext=None): | ||||
|     def call_at(self, when, callback, *args, context=None): | ||||
|         raise NotImplementedError | ||||
| 
 | ||||
|     def time(self): | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Miss Islington (bot)
						Miss Islington (bot)