~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/win32console.py

Optimize common case where unique_lcs returns a set of lines all in a row

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
1
 
18
2
"""
19
3
Set of functions to work with console on Windows.
23
7
 
24
8
import struct
25
9
 
26
 
# We can cope without it; use a separate variable to help pyflakes
27
10
try:
28
11
   import ctypes
29
 
   has_ctypes = True
30
12
except ImportError:
31
 
    has_ctypes = False
 
13
   ctypes = None
32
14
 
33
15
 
34
16
WIN32_STDIN_HANDLE = -10
45
27
 
46
28
   Dependencies: ctypes should be installed.
47
29
   """
48
 
   if not has_ctypes:
 
30
   if ctypes is None:
49
31
       # no ctypes is found
50
32
       return (defaultx, defaulty)
51
33