2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Removed flotsam

[SVN r13629]
This commit is contained in:
Dave Abrahams
2002-05-03 03:35:18 +00:00
parent a31c0e9082
commit fa64ef6f00

View File

@@ -152,20 +152,12 @@ are a complicated constructor and member function, respectively.
def run(args = None):
### Strange bug somewhere: with Metrowerks: it will crash in
### garbage-collection code unless traceback and sre have been
### loaded before m1.
# import traceback
# import sre
# import m2
# import m1
import sys
import doctest
if args is not None:
sys.argv = args
# import sys
return doctest.testmod(sys.modules.get(__name__))
if __name__ == '__main__':