[Python-3000-checkins] r55641 - python/branches/p3yk/Doc/tut/tut.tex

neal.norwitz python-3000-checkins at python.org
Tue May 29 10:03:52 CEST 2007


Author: neal.norwitz
Date: Tue May 29 10:03:50 2007
New Revision: 55641

Modified:
   python/branches/p3yk/Doc/tut/tut.tex
Log:
Missed one sys.exc_type.  I wonder why exc_{value,traceback} were already gone

Modified: python/branches/p3yk/Doc/tut/tut.tex
==============================================================================
--- python/branches/p3yk/Doc/tut/tut.tex	(original)
+++ python/branches/p3yk/Doc/tut/tut.tex	Tue May 29 10:03:50 2007
@@ -2653,7 +2653,7 @@
 ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__stderr__',
  '__stdin__', '__stdout__', '_getframe', 'api_version', 'argv', 
  'builtin_module_names', 'byteorder', 'callstats', 'copyright',
- 'displayhook', 'exc_clear', 'exc_info', 'exc_type', 'excepthook',
+ 'displayhook', 'exc_clear', 'exc_info', 'excepthook',
  'exec_prefix', 'executable', 'exit', 'getdefaultencoding', 'getdlopenflags',
  'getrecursionlimit', 'getrefcount', 'hexversion', 'maxint', 'maxunicode',
  'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache',


More information about the Python-3000-checkins mailing list