~ubuntu-branches/debian/sid/pyx/sid

« back to all changes in this revision

Viewing changes to pyx/font/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Stuart Prescott
  • Date: 2011-05-20 00:13:52 UTC
  • mto: (9.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20110520001352-odcuqpdezuusbbw1
Tags: upstream-0.11.1
Import upstream version 0.11.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: ISO-8859-1 -*-
2
 
#
3
 
#
4
 
# Copyright (C) 2005 Andr� Wobst <wobsta@users.sourceforge.net>
 
1
# -*- encoding: utf-8 -*-
 
2
#
 
3
#
 
4
# Copyright (C) 2011 Jörg Lehmann <joergl@users.sourceforge.net>
 
5
# Copyright (C) 2005-2011 André Wobst <wobsta@users.sourceforge.net>
5
6
#
6
7
# This file is part of PyX (http://pyx.sourceforge.net/).
7
8
#
18
19
# You should have received a copy of the GNU General Public License
19
20
# along with PyX; if not, write to the Free Software
20
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
22
 
 
23
import font
 
24
__allfont__ = ["T1font", "T1builtinfont", "text_pt", "font"]
 
25
for importfromfont in __allfont__:
 
26
    locals()[importfromfont] = getattr(font, importfromfont)
 
27
 
 
28
__all__ = __allfont__