Questions tagged [wing-ide]

Wing IDE is an integrated development environment for Python, made by Wingware and available both in free and paid editions.

When asking questions it helps to mention which edition (Pro, Personal, or 101), which Wing version, and which OS type/version you are using.

108 questions
0
votes
1 answer

Why are some of the functions missing when I call a module I created from another script?

I'm working with a module I created a while ago, where I have a bunch of functions I keep re-using. Today, I added a new one but when I try to call it from another script, I got the error "AttributeError: 'module' object has no attribute…
Noebyus
  • 65
  • 1
  • 7
0
votes
1 answer

Getting Wing IDE to stop catching the exceptions that wxPython catches

I started using Wing IDE and it's great. I'm building a wxPython app, and I noticed that Wing IDE catches exceptions that are usually caught by wxPython and not really raised. This is usually useful, but I would like to disable this behavior…
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
0
votes
1 answer

Wing IDE 101 says some values are invalid

In WingIDE 101: When I go to Source- Current File Properties - Debug - Show this dialog before each run - Apply: I get the error: Some values are invalid: Python executable 'C:\Program Files\Common Files\Microsoft Shared\Windows Live\' is not a…
Mat.S
  • 1,814
  • 7
  • 24
  • 36
0
votes
1 answer

Syntax highlighting for coffeescript in Wing IDE

Does any know of a way to get syntax highlighting for coffeescript files in Wing IDE? I've got it set to highlight as if it were a javascript file, which works alright, but there are a few things it lacks, particularly comments. Has someone written…
Hoopdady
  • 2,296
  • 3
  • 25
  • 40
0
votes
3 answers

Learning curve for PyDev-Eclipse and WingIDE --- which is steeper?

I have been using WingIDE for python program development for several years, and in general I am satisfied with it (esp. with their technical support). The learning curve for WingIDE was rather steep (at least for me). I am now considering some…
Birdy40
  • 337
  • 1
  • 6
  • 15
0
votes
1 answer

How can I deal with No module named edit.editor?

I am trying to follow the WingIDE tutorial on creating scripts in the IDE. This following example scripts always throws an error: import wingapi def test_script(test_str): app = wingapi.gApplication v = "Product info is: " +…
Tomas Pajonk
  • 5,132
  • 8
  • 41
  • 51
0
votes
2 answers

How should I setup the Wing IDE for use with IronPython

Here is a screen where I should point the Wing IDE to my python files. I am using IronPython. Am I assuming correctly that textbox one gets filled with ipy.exe ? (proper path provided) What should be in the rest of the boxes ?
Tomas Pajonk
  • 5,132
  • 8
  • 41
  • 51
-1
votes
1 answer

Django not working on Wing IDE

Platform: Mac OS X Lion 10.7.2 Wing IDE version 4.1.3-1 Created a project using instructions from here. Tried to add that project by following the instructions here. Below are the screen shots of what Wing IDE says when I try to configure. The…
user699540
  • 819
  • 2
  • 12
  • 18
-1
votes
1 answer

How to print symbols vertically in python?

I just want to print a symbol a certain amount of times vertically. def draw_symbol(): print() symbol = "" for num in range(8): symbol += "*" print(symbol) return draw_row() The…
Seeta
  • 13
  • 1
-1
votes
2 answers

Why can't I run my codes in Python Shell?

def thisisfun(x,y,z): x=2 y=3 z=4 print('AHHHHA') thisisfun(333,"annoy",2142125) If it is with the last line, then after I clicked on Execute Current File it actually prints AHHHHA But when I attempted to have…
Peter Jiang
  • 117
  • 7
-1
votes
2 answers

Variable Initialization with Methods (Python)

Is there a reason my count equals zero, when it should be 29. I tried to initialize count inside my function but then it says its not defined. shapefile = "Schools.shp" work = r"c:\Scripts\Lab 6 Data" facility = "HIGH SCHOOL" count = 0 def…
A_Worthy
  • 65
  • 1
  • 2
  • 12
-2
votes
2 answers

I'm getting a SyntaxError: (unicode error) 'unicodeescape' codec

Hi I'm making a simple code that is due soon. I'm using Wing IDE 4.1.3-1 and I keep getting this message when I run my program code SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-4: truncated \UXXXXXXXX escape (,…
-2
votes
1 answer

Having some issues using selecting layer by location syntax

My instructions: Create a Python script that selects parcels from "coa_parcels.shp" that intersect with the shapefile "floodplains.shp" and creates a new shapefile that only contains the selected parcels. The location of the workspace and the…
A_Worthy
  • 65
  • 1
  • 2
  • 12
-2
votes
2 answers

Incorrect stack data in Wing IDE with Tkinter?

I am using Wing to write and debug a Tkinter GUI. I am finding that the Stack Data View doesn't seem to match the actual attributes of my widgets. Take this code for example: import Tkinter import ttk root = Tkinter.Tk() checkbutton =…
Emma
  • 1,287
  • 2
  • 17
  • 22
-2
votes
3 answers

Rock Paper Scissors Python Program

I'm trying to write a Rock, Paper Scissors program with Python but I keep getting this error and I'm not sure how to fix it. File "C:\Python33\Wing IDE 101 5.0\src\debug\tserver\_sandbox.py", line 140, in File "C:\Python33\Wing IDE 101…