Re: Embedded Python interpreter, runtime libs, and crashing

2005-10-25 Thread jussij
It all runs great in the Debug configuration, but everything gets scary when I switch to Release. My suggestion would be to turn on debug information for the release build. That would at least let you run the release build inside the debugger, allowing you to see the call stack of the

Re: Wingide is a beautiful application

2005-12-22 Thread jussij
I don't like, that one of the latest UltraEdit releases was buggy causing 100%CPU load and 2MByte of harddisk data traffic beeing idle, so I am looking for an alternative for years, but instead of finding it I was forced lately to spend money again on renewing my license. Have you tried the

Re: Wingide is a beautiful application

2005-12-22 Thread jussij
The best not free overall text editing tool on Windows is UltraEdit As I mentioned before, you should give Zeus a test drive. Many Zeus users think it is the best programming tool for the Windows platform: http://www.zeusedit.com/awards.html Jussi Jumppanen Author: Zeus for Windows --

Re: Wingide is a beautiful application

2005-12-22 Thread jussij
I gave Zeus a try and it passed loading of a large (100 MByte) text file (many other text editors fail here). Zeus is not designed as a large file editor :( It will try to load the entire file into memory so when you open these very large files the RAM is quickly used up. It looks at the

Re: Indentation/whitespace

2005-12-26 Thread jussij
i think you can't call an editor python capable unless it shows you clearly hard (yuck)or soft tabs like View / Show Invisibles in textmate, View / view whitespace in komodo. Zeus for Windows has this View / View whitespace feature: http://www.zeusedit.com Note: Zeus is shareware (45

Re: ssh or other python editor

2005-10-04 Thread jussij
I'm working/making my python scripts in a windows OS with putty now. If you need an FTP editor take a look at Zeus: http://www.zeusedit.com/features.html Zeus will do SSH, SSL/TLS and plain old FTP editing, with support for Unix, Windows, VM and MVS FTP servers. Just remember to setup

Re: Recommendations for CVS systems

2005-08-09 Thread jussij
I was wondering if anyone could make recomendations/comments about CVS systems Amoung other things the Zeus for Windows programmer's editor/IDE comes with integrated CVS support: http://www.zeusedit.com/features.html Most of the developement is Python, but some C, Javascript, HTML, etc.

Re: Looking for a Python Program/Tool That Will Add Line Numbers to a txt File

2008-02-17 Thread JussiJ
On Feb 14, 5:54 pm, W. Watson [EMAIL PROTECTED] wrote: See Subject. It's a simple txt file, each line is a Python stmt, but I need up to four digits added to each line with a space between the number field and the text. FWIW here is a Zeus editor, Python macro script to do this: import

Re: how do you move to a new line in your text editor?

2006-03-02 Thread jussij
One thing I like to do is use tabs for my indentation, because this makes it easy to outdent when I need to start a new line in column 1. I can press backspace once and move 4 spaces to the left. Zeus has a Smart Backspace feature (configurable on or off) where by it will try to line up the

Re: Python IDE: great headache....

2006-03-12 Thread jussij
I use WinXP sp2 for current development. You might want to take a look at the Zeus for Windows IDE: http://www.zeusedit.com Here is how Zeus stacks up to your check list: I hope that an IDE should be featured with: 1. Grammar Colored highlights. It does syntax coloring for Python. 2.

Re: What's The Best Editor for python

2006-03-25 Thread jussij
Can one of you say to me what's the best editor for editing the python programs( for linux or windows ) The Zeus for Windows IDE has support for Python: http://www.zeusedit.com/python.html It does Python code folding, smart indenting and syntax highlighting. It also has features like

Re: how to comment lot of lines in python

2006-04-04 Thread jussij
You should use a decent editor that could automatically comment/uncomment code upon your request. The Zeus for Windows IDE has just such a feature: http://www.zeusedit.com/python.html To do this in Zeus you basically mark the lines of text that need commenting then use the Macros, Add

Re: running IDLE from another program?

2006-04-04 Thread jussij
So it comes down to this: is it possible to run code (that was created in a separate editor) in IDLE in some kind of automated way? Using the Zeus for Windows IDE this should be possible. Zeus has many options when it comes to running tools and compilers:

Re: preferred windows text editor?

2007-05-09 Thread JussiJ
On May 10, 4:06 am, T. Crane [EMAIL PROTECTED] wrote: Right now I'm using Notepad++. What are other people using? Zeus: http://www.zeusedit.com -- http://mail.python.org/mailman/listinfo/python-list

Re: python shell

2007-05-20 Thread JussiJ
On May 17, 3:38 am, Krypto [EMAIL PROTECTED] wrote: My mentor told me that you can virtually do anything from testing your program to anything in the shell. Any incite would be useful. Using something like tee you can run the Python script in the shell and also capture it's output:

Re: code folding, a unique problem to python?

2006-06-15 Thread jussij
John Salerno wrote: But my question is more general: is it possible to implement code folding with Python given that it has no real block delimiters? I can't speak for UltraEdit, but the Zeus will quite happily fold Python code: http://www.zeusedit.com/features.html Jussi Jumppanen

Re: a good programming text editor (not IDE)

2006-06-19 Thread jussij
[EMAIL PROTECTED] wrote: Anyway, the only thing editplus doesn't do that I wish it did is code folding. If you need a Python folding editor you could always take a look at Zeus: http://www.zeusedit.com/python.html All the stuff you guys are talking about: line numbers, syntax

Re: compiling python (or ironpython) to .exe or .dll for or not for .NET

2006-06-28 Thread jussij
per9000 wrote: Is the newest Ironpython really as old as from 2004 July 28 (as stated on http://www.ironpython.com/)? I think the site is dead but IronPython is far from dead. In fact the IronPython 1.0 beta has just been release. For more details go to this link: http://www.gotdotnet.com/

Re: text editor suggestion?

2006-08-21 Thread jussij
John Salerno wrote: The thing I liked about UltraEdit is that you can define your own groups of words and put whatever words you want in there, so my file had a group called '__builtins__' and it listed all the Python built-in methods, and those would be highlighted. Most editors I see don't

Re: Looking for the Perfect Editor

2006-09-11 Thread jussij
Omar wrote: I'd love the perfect editor that would be: Zeus for Windows understands Python, Java Script, HTML an many other languages: http://www.zeusedit.com/features.html Note: Zeus is shareware (45 day trial). It will do Python syntax highlighting, code folding, class browsing, smart

ANN: Zeus for Windows IDE Version 3.97a

2009-12-17 Thread JussiJ
The latest 3.97a release of the Zeus for Windows IDE is now available: http://www.zeusedit.com/whatsnew.html Zeus is fully configurable, language neutral IDE. It comes pre-configured with Python syntax highlighting and code folding. It is also possible to write Zeus scripts using Python.

Re: What IDE support python 3.0.1 ?

2009-05-04 Thread JussiJ
On Apr 16, 1:26 pm, Brendon Wickham brendon.wick...@gmail.com wrote: I agree, no IDE needed. Just don't use Notepad! I'm on Mac, so spoiled for choice of text editors, but I'm sure there's one or 2 good uns if you're on Windows. The Zeus for Windows IDE is Python aware:

Re: What text editor is everyone using for Python

2009-06-17 Thread JussiJ
On May 31, 12:42 am, edexter eric_dex...@msn.com wrote: On the Windows platform the Zeus editor has Python language support: http://www.zeusedit.com I will sometimes use word pad but i perfer syntax highlighting.. The syntax highlighter is fully configurable. I would be after is to be

ANN: Zeus - Windows IDE for Python

2012-07-11 Thread jussij
The latest Zeus IDE Version 3.97o is now available: http://www.zeusedit.com/python.html This latest Zeus release adds improved Python debugger support. Other Pyhon language features include syntax highlighting, code completion, smart indenting, class browsing and code folding. Zeus is also

Re: No more Python support in NetBeans 7.0

2012-07-17 Thread jussij
On Thursday, March 24, 2011 7:32:44 AM UTC-7, Kees Bakker wrote: Sad news (for me, at least), in the upcoming version 7.0 of NetBeans there will be no Python plugin anymore. FWIW on the Windows platform the Zeus IDE has support for python: http://www.zeusedit.com/python.html Zeus is a

Re: Idle no longer works

2012-08-13 Thread jussij
On Saturday, August 11, 2012 4:09:16 PM UTC-7, Opap-OJ wrote: I can no longer open the Idle IDE for Python on Windows 7. .. Any idea why? It looks like your registry has changed. To fix this just use the Windows Explorer, click on a Python file and use the 'Open with, Choose default

Re: Python IDE/text-editor

2011-05-05 Thread JussiJ
On Apr 16, 1:20 pm, Alec Taylor alec.tayl...@gmail.com wrote: I'm looking for an IDE which offers syntax-highlighting, code-completion, tabs, The Zeus editor does offers all these features: http://www.zeusedit.com/ Zeus is also scriptable and Zeus scripts can be written in Python. Zeus

Re: Make Python portable by default! (Re: Python IDE/text-editor)

2011-05-23 Thread JussiJ
On Apr 17, 7:13 pm, Wolfgang Keller felip...@gmx.net wrote: You can't run Python programs without a Python interpreter installed. Wrong. See e.g.http://www.portablepython.com/ In this case Python is still installed on the machine. It may not be installled on the PC's hard disk but it is

Re: New to python, do I need an IDE or is vim still good enough?

2013-01-01 Thread jussij
FWIW on the Windows platform the Zeus IDE has support for Python: http://www.zeusedit.com/python.html Zeus does the standard Python syntax highlighting, code completion, smart indenting, class browsing, code folding etc. Zeus also has limited Python debugger support and is fully scriptable

Weird behaviour?

2013-04-21 Thread jussij
Can someone please explain the following behaviour? I downloaded and compiled the Python 2.7.2 code base. I then created this simple c:\temp\test.py macro: import sys def main(): print(Please Input 120: ) input = raw_input() print(Value Inputed: +

Re: Weird behaviour?

2013-04-21 Thread jussij
On Monday, April 22, 2013 10:56:11 AM UTC+10, Chris Angelico wrote: so your string actually contains '120\r', as will be revealed by its repr(). Thanks Chris. That makes sense. Cheers Jussi -- http://mail.python.org/mailman/listinfo/python-list

Re: Weird behaviour?

2013-04-21 Thread jussij
On Monday, April 22, 2013 11:05:11 AM UTC+10, Steven D'Aprano wrote: I cannot confirm that behaviour. It works fine for me. As Chris pointed out there is a \r character at the end of the string and that is causing the if to fail. I can now see the \r :) So this is *Windows only* behaviour.

Re: Weird behaviour?

2013-04-22 Thread jussij
On Tuesday, April 23, 2013 12:29:57 AM UTC+10, nn wrote: Maybe it is related to this bug? http://bugs.python.org/issue11272 I'm running Python 2.7.2 (on Windows) and that version doesn't appear to have that bug: Python 2.7.2 (default, Apr 23 2013, 11:49:52) [MSC v.1500 32 bit (Intel)] on

Re: Editor Ergonomics [was: Important features for editors]

2013-07-07 Thread jussij
On Sunday, July 7, 2013 12:41:02 PM UTC+10, Steven D'Aprano wrote: I am not an ergonomic expert, but I understand that moving from mouse to keyboard actually helps prevent RSI, because it slows down the rate of keystrokes and uses different muscle groups. After 20+ years of coding using the

Re: Important features for editors

2013-07-08 Thread jussij
On Thursday, July 4, 2013 5:32:59 PM UTC+10, cutems93 wrote: I am researching on editors for my own reference. On the Windows platform there is the Zeus editor: http://www.zeusedit.com/python.html It does the standard syntax highlighting, code folding and smarting indent etc etc. It's also

Re: Editor Ergonomics [was: Important features for editors]

2013-07-10 Thread jussij
On Wednesday, July 10, 2013 2:17:12 PM UTC+10, Xue Fuqiao wrote: * It is especially handy for selecting and deleting text. When coding I never use a mouse to select text regions or to delete text. These operations I do using just the keyboard. --