Changes between Version 11 and Version 12 of Debugging
- Timestamp:
- 02/16/13 04:31:16 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Debugging
v11 v12 88 88 Unfortunately, because of the asynchronous nature of X11 calls, the error may generate this crash some time after the event that caused it. 89 89 In this case, we may want to force all X11 calls to be synchronized (which will hurt performance and may even hide the bugs - beware of heisenbugs!), trace all X11 calls, etc. 90 [/ trac/attachment/wiki/Debugging/error.py this modified error.py] allows you to do just that (see the constants at the top).90 [/attachment/wiki/Debugging/error.py this modified error.py] allows you to do just that (see the constants at the top). 91 91 92 92 == Venerable Print Statements == … … 102 102 Needs documenting, [http://mg.pov.lt/objgraph/ objgraph] is a good place to start. 103 103 104