~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to release/scripts/bpymodules/BPyBlender.py

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: BPyBlender.py,v 1.2 2005/04/16 05:25:42 ianwill Exp $
 
2
#
 
3
# --------------------------------------------------------------------------
 
4
# BPyBlender.py version 0.3 Mar 20, 2005
 
5
# --------------------------------------------------------------------------
 
6
# helper functions to be used by other scripts
 
7
# --------------------------------------------------------------------------
 
8
# ***** BEGIN GPL LICENSE BLOCK *****
 
9
#
 
10
# This program is free software; you can redistribute it and/or
 
11
# modify it under the terms of the GNU General Public License
 
12
# as published by the Free Software Foundation; either version 2
 
13
# of the License, or (at your option) any later version.
 
14
#
 
15
# This program is distributed in the hope that it will be useful,
 
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
# GNU General Public License for more details.
 
19
#
 
20
# You should have received a copy of the GNU General Public License
 
21
# along with this program; if not, write to the Free Software Foundation,
 
22
# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
23
#
 
24
# ***** END GPL LICENCE BLOCK *****
 
25
# --------------------------------------------------------------------------
 
26
 
 
27
# Basic set of modules Blender should have in all supported platforms.
 
28
# The second and third lines are the contents of the Python23.zip file
 
29
# included with Windows Blender binaries along with zlib.pyd.
 
30
# Other platforms are assumed to have Python installed.
 
31
basic_modules = [
 
32
'Blender',
 
33
'chunk','colorsys','copy','copy_reg','gzip','os','random','repr','stat',
 
34
'string','StringIO','types','UserDict','webbrowser','whrandom',
 
35
'zlib', 'math',
 
36
'BPyBlender', 'BPyRegistry'
 
37
]