~pythonregexp2.7/python/issue2636-09-01+10

« back to all changes in this revision

Viewing changes to Lib/plat-mac/buildtools.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-05-24 18:56:40 UTC
  • mfrom: (39055.1.22 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080524185640-59vz6l1f7qgixgal
Merged in changes from the Single-Loop Engine branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
"""tools for BuildApplet and BuildApplication"""
2
2
 
 
3
import warnings
 
4
warnings.warn("the buildtools module is deprecated and is removed in 3.0",
 
5
              DeprecationWarning, 2)
 
6
 
3
7
import sys
4
8
import os
5
9
import string
14
18
import EasyDialogs
15
19
import shutil
16
20
 
17
 
import warnings
18
 
warnings.warn("the buildtools module is deprecated", DeprecationWarning, 2)
19
 
 
20
21
 
21
22
BuildError = "BuildError"
22
23