~barcc/gedit-debugger/trunk

« back to all changes in this revision

Viewing changes to pydebugger/window.py

  • Committer: B. Clausius
  • Date: 2014-05-01 21:26:01 UTC
  • Revision ID: barcc@gmx.de-20140501212601-yjdfq25icnh1oqm1
Ported to Python 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
1
# -*- coding: utf-8 -*-
3
2
 
4
 
#  Copyright © 2013  B. Clausius <barcc@gmx.de>
 
3
#  Copyright © 2013-2014  B. Clausius <barcc@gmx.de>
5
4
#
6
5
#  This program is free software: you can redistribute it and/or modify
7
6
#  it under the terms of the GNU General Public License as published by
16
15
#  You should have received a copy of the GNU General Public License
17
16
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
17
 
19
 
from __future__ import print_function, division
20
18
 
21
19
import sys, os
22
20