mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Clarify deprecation of the floor div operator, modulo operator,
and divmod() function for complex numbers. Closes SF Bug 621708: Unclear deprecation.
This commit is contained in:
		
							parent
							
								
									a5c0e6d6c8
								
							
						
					
					
						commit
						463bfafd24
					
				
					 1 changed files with 4 additions and 5 deletions
				
			
		| 
						 | 
					@ -700,11 +700,10 @@ approximately where \code{x/y} is replaced by \code{floor(x/y)}) or
 | 
				
			||||||
    * y + x \%{} y} be very close to \code{x}.
 | 
					    * y + x \%{} y} be very close to \code{x}.
 | 
				
			||||||
}.
 | 
					}.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Complex floor division operator, modulo operator, and
 | 
					\deprecated{2.3}{The floor division operator, the modulo operator,
 | 
				
			||||||
\function{divmod()}.
 | 
					and the \function{divmod()} function are no longer defined for complex
 | 
				
			||||||
 | 
					numbers.  Instead, convert to a floating point number using the
 | 
				
			||||||
\deprecated{2.3}{Instead convert to float using \function{abs()}
 | 
					\function{abs()} function if appropriate.}
 | 
				
			||||||
if appropriate.}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
The \code{+} (addition) operator yields the sum of its arguments.
 | 
					The \code{+} (addition) operator yields the sum of its arguments.
 | 
				
			||||||
The arguments must either both be numbers or both sequences of the
 | 
					The arguments must either both be numbers or both sequences of the
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue