mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Mass check-in after untabifying all files that need it.
This commit is contained in:
		
							parent
							
								
									9ea7024754
								
							
						
					
					
						commit
						45e2fbc2e7
					
				
					 50 changed files with 5249 additions and 5249 deletions
				
			
		|  | @ -48,18 +48,18 @@ | |||
| 
 | ||||
| class Exception: | ||||
|     def __init__(self, *args): | ||||
| 	self.args = args | ||||
|         self.args = args | ||||
| 
 | ||||
|     def __str__(self): | ||||
|         if not self.args: | ||||
|             return '' | ||||
| 	elif len(self.args) == 1: | ||||
| 	    return str(self.args[0]) | ||||
| 	else: | ||||
| 	    return str(self.args) | ||||
|         elif len(self.args) == 1: | ||||
|             return str(self.args[0]) | ||||
|         else: | ||||
|             return str(self.args) | ||||
| 
 | ||||
|     def __getitem__(self, i): | ||||
| 	return self.args[i] | ||||
|         return self.args[i] | ||||
| 
 | ||||
| class StandardError(Exception): | ||||
|     pass | ||||
|  | @ -68,21 +68,21 @@ class SyntaxError(StandardError): | |||
|     filename = lineno = offset = text = None | ||||
|     msg = "" | ||||
|     def __init__(self, *args): | ||||
| 	self.args = args | ||||
| 	if len(self.args) >= 1: | ||||
| 	    self.msg = self.args[0] | ||||
| 	if len(self.args) == 2: | ||||
| 	    info = self.args[1] | ||||
| 	    try: | ||||
| 		self.filename, self.lineno, self.offset, self.text = info | ||||
| 	    except: | ||||
| 		pass | ||||
|         self.args = args | ||||
|         if len(self.args) >= 1: | ||||
|             self.msg = self.args[0] | ||||
|         if len(self.args) == 2: | ||||
|             info = self.args[1] | ||||
|             try: | ||||
|                 self.filename, self.lineno, self.offset, self.text = info | ||||
|             except: | ||||
|                 pass | ||||
|     def __str__(self): | ||||
|         return str(self.msg) | ||||
| 
 | ||||
| class IOError(StandardError): | ||||
|     def __init__(self, *args): | ||||
| 	self.args = args | ||||
|         self.args = args | ||||
|         self.errno = None | ||||
|         self.strerror = None | ||||
|         if len(args) == 2: | ||||
|  | @ -146,7 +146,7 @@ class MemoryError(StandardError): | |||
| 
 | ||||
| class SystemExit(Exception): | ||||
|     def __init__(self, *args): | ||||
| 	self.args = args | ||||
|         self.args = args | ||||
|         if len(args) == 0: | ||||
|             self.code = None | ||||
|         elif len(args) == 1: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum