No longer need to use codehack -- use co.co_firstlineno instead.
diff --git a/Lib/pdb.py b/Lib/pdb.py
index ec6a2ab..99e6191 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -112,7 +112,6 @@
 			filename = self.curframe.f_code.co_filename
 		except:
 			# Try function name as the argument
-			import codehack
 			try:
 				func = arg
 				if hasattr(func, 'im_func'):
@@ -122,7 +121,7 @@
 				print '*** The specified object',
 				print 'is not a function', arg
 				return
-			lineno = codehack.getlineno(code)
+			lineno = code.co_firstlineno
 			filename = code.co_filename
 
 		# now set the break point