mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 07:01:21 +00:00 
			
		
		
		
	svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55329 | brett.cannon | 2007-05-14 16:36:56 -0700 (Mon, 14 May 2007) | 3 lines Implement the removal of tuple parameter unpacking (PEP 3113). Thanks, Tony Lownds for the patch. ........ r55331 | neal.norwitz | 2007-05-14 16:40:30 -0700 (Mon, 14 May 2007) | 1 line Update to use Python 3.0 ........ r55332 | brett.cannon | 2007-05-14 16:47:18 -0700 (Mon, 14 May 2007) | 2 lines Mention PEP 3113. And thanks to Tony Lownds for the PEP 3113 patch. ........ r55333 | neal.norwitz | 2007-05-14 16:57:06 -0700 (Mon, 14 May 2007) | 1 line Fix exception printing (no more exceptions module) ........ r55334 | neal.norwitz | 2007-05-14 17:11:10 -0700 (Mon, 14 May 2007) | 1 line Remove popen* functions from os ........ r55335 | neal.norwitz | 2007-05-14 18:03:38 -0700 (Mon, 14 May 2007) | 1 line Get rid of most of popen. There are still some uses I need to cleanup. ........ r55336 | neal.norwitz | 2007-05-14 21:11:34 -0700 (Mon, 14 May 2007) | 1 line Remove a few more remnants of the compiler package ........ r55337 | neal.norwitz | 2007-05-14 22:28:27 -0700 (Mon, 14 May 2007) | 1 line Get test_[cx]pickle working on 64-bit platforms (avoid overflow int/long) ........
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			829 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			829 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# line 1
 | 
						|
'A module docstring.'
 | 
						|
 | 
						|
import sys, inspect
 | 
						|
# line 5
 | 
						|
 | 
						|
# line 7
 | 
						|
def spam(a, b, c, d=3, e=4, f=5, *g, **h):
 | 
						|
    eggs(b + d, c + f)
 | 
						|
 | 
						|
# line 11
 | 
						|
def eggs(x, y):
 | 
						|
    "A docstring."
 | 
						|
    global fr, st
 | 
						|
    fr = inspect.currentframe()
 | 
						|
    st = inspect.stack()
 | 
						|
    p = x
 | 
						|
    q = y / 0
 | 
						|
 | 
						|
# line 20
 | 
						|
class StupidGit:
 | 
						|
    """A longer,
 | 
						|
 | 
						|
    indented
 | 
						|
 | 
						|
    docstring."""
 | 
						|
# line 27
 | 
						|
 | 
						|
    def abuse(self, a, b, c):
 | 
						|
        """Another
 | 
						|
 | 
						|
\tdocstring
 | 
						|
 | 
						|
        containing
 | 
						|
 | 
						|
\ttabs
 | 
						|
\t
 | 
						|
        """
 | 
						|
        self.argue(a, b, c)
 | 
						|
# line 40
 | 
						|
    def argue(self, a, b, c):
 | 
						|
        try:
 | 
						|
            spam(a, b, c)
 | 
						|
        except:
 | 
						|
            self.ex = sys.exc_info()
 | 
						|
            self.tr = inspect.trace()
 | 
						|
 | 
						|
# line 48
 | 
						|
class MalodorousPervert(StupidGit):
 | 
						|
    pass
 | 
						|
 | 
						|
class ParrotDroppings:
 | 
						|
    pass
 | 
						|
 | 
						|
class FesteringGob(MalodorousPervert, ParrotDroppings):
 | 
						|
    pass
 |