~barcc/gedit-debugger/trunk

« back to all changes in this revision

Viewing changes to pydebugger/__init__.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
1
# -*- coding: utf-8 -*-
2
2
 
3
 
#  Copyright © 2013  B. Clausius <barcc@gmx.de>
 
3
#  Copyright © 2013-2014  B. Clausius <barcc@gmx.de>
4
4
#
5
5
#  This program is free software: you can redistribute it and/or modify
6
6
#  it under the terms of the GNU General Public License as published by
15
15
#  You should have received a copy of the GNU General Public License
16
16
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
 
from __future__ import print_function, division
19
18
 
20
19
from pydebugger.window import ViewActivatable, WindowActivatable
21
20