Change the package name from wxPhoenix to wx

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@68979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-09-03 02:39:18 +00:00
parent 04f10c5868
commit 5e89a9606d
19 changed files with 21 additions and 21 deletions

View File

@@ -99,7 +99,7 @@ class Configuration(object):
NO_SCRIPTS = False
# Don't install the tools/script files
PKGDIR = 'wxPhoenix'
PKGDIR = 'wx'
# The name of the top-level package
# ---------------------------------------------------------------

View File

@@ -2,7 +2,7 @@
# Name: etg/_core.py
# Author: Robin Dunn
#
# Created: 8-Nove-2010
# Created: 8-Nov-2010
# Copyright: (c) 2011 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------
@@ -10,7 +10,7 @@
import etgtools
import etgtools.tweaker_tools as tools
PACKAGE = "wxPhoenix" # This is just temporary, rename to 'wx' later.
PACKAGE = "wx"
MODULE = "_core"
NAME = "_core" # Base name of the file to generate to for this script
DOCSTRING = ""

View File

@@ -1,4 +1,4 @@
import wxPhoenix as wx
import wx
app = wx.PySimpleApp() # Should see a deprecation warning here
frm = wx.Frame(None)
frm.Show()

View File

@@ -1,5 +1,5 @@
import wxPhoenix as wx
import wx
print wx.version()
##import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')

View File

@@ -1,4 +1,4 @@
import wxPhoenix as wx
import wx
print wx.version()
#import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')

View File

@@ -179,7 +179,7 @@ extern "C" {
/* The name of the sip module. */
#define SIP_MODULE_NAME "wxPhoenix.siplib"
#define SIP_MODULE_NAME "wx.siplib"
/*

View File

@@ -13,7 +13,7 @@ else: # run as main?
sys.path.insert(0, phoenixDir)
# stuff for debugging
import wxPhoenix as wx
import wx
print "pid:", os.getpid()
#print "executable:", sys.executable; raw_input("Press Enter...")

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
##import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')
import warnings

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,6 +1,6 @@
import sys
import unittest2
import wxPhoenix as wx
import wx
##import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')
#---------------------------------------------------------------------------

View File

@@ -1,6 +1,6 @@
import unittest2
import wxPhoenix as wx
import wx
#---------------------------------------------------------------------------

View File

@@ -1,6 +1,6 @@
import sys
import unittest2
import wxPhoenix as wx
import wx
##import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')
#---------------------------------------------------------------------------
@@ -34,7 +34,7 @@ class WindowList(unittest2.TestCase):
self.assertTrue(type(tlw) == wx.Frame)
self.assertTrue(tlw.Title.startswith('frm'))
def test_WindowList_GetChildren(self):
def test_WindowList_GetChildren(self): boo
children = self.frames[0].GetChildren()
self.assertTrue(len(children) == 0)
children = self.frames[4].GetChildren()