Re: [OSX] side by side python

2011-04-14 Thread Fabio
cipy which makes me think that for some reason it points to the old 2.5 version. But I might be wrong and the problem is another... Any clue? Thanks Fabio -- http://mail.python.org/mailman/listinfo/python-list

[Mac OSX] TextWrangler "run" command not working properly

2011-04-14 Thread Fabio
asts an error saying: ImportError: No module named scipy Maybe for some reason it points to the old 2.5 version. But I might be wrong and the problem is another... I copy here the first lines in the terminal window if i give the "run in terminal" command Last login: Thu Apr 14 22:38:26 on

Re: TextWrangler "run" command not working properly

2011-04-15 Thread Fabio
In article <382709dd-5e3f-4b07-a642-4ce141ef4...@18g2000prd.googlegroups.com>, Jon Clements wrote: > http://www.velocityreviews.com/forums/t570137-textwrangler-and-new-python-vers > ion-mac.html Thank you for the reply Jon. I saw the post in velocityreviews. Unfortunately it doesn't solve my

Re: TextWrangler "run" command not working properly

2011-04-17 Thread Fabio
"in TextWrangler". It only works fine if I use the "Run in Terminal" method. Do you have more details about how TextWrangler manages these commands? Which are its defalut locations? Cheers, Fabio > > > On Apr 14, 2011, at 5:01 PM, Jon Clements wrote: > > >

PyQT Licensing and plugins/scripting

2004-12-03 Thread Fabio
touch with PyQT directly it should have a commercial license itself; how does this apply to those who want to develop commercial PyQT applications with a plugin/scripting framework? Thanks, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Question concerning array.array and C++

2008-11-05 Thread Fabio
dule.c and tried to link the arraymodule.o file to my code but then I have to mess around with extern "C" and the like and it gets really messy. Any help would be great! Fabio -- http://mail.python.org/mailman/listinfo/python-list

PyDev 2.7.4 Released

2013-05-16 Thread Fabio Zadrozny
? --- PyDev is a plugin that enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

PyDev 2.7.5 Released

2013-05-28 Thread Fabio Zadrozny
first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer PyDev - Python Development Environment for

Re: How can I make this piece of code even faster?

2013-07-20 Thread Fabio Zadrozny
k its value within a while (that way you can save a few instructions on method invocations from xrange/range). Anyways, if that's not fast enough, just port it to c/c++ (or one of the alternatives to speed it up while still in python: numba, cython, shedskin). Or (if you can), try to use PyPy and see if you get more speed without doing anything. Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

PyDev 2.8.0 Released

2013-07-25 Thread Fabio Zadrozny
lysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

Re: PyDev IPython Confusion

2012-06-30 Thread Fabio Zadrozny
'.join(sorted(sys.path))) and compare that with your configuration... ( note that the recommended place to ask PyDev questions is at stackoverflow with a PyDev tag... see: http://pydev.org/about.html ) Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Is there a way to configure IDLE to use spaces instead of tabs for indenting?

2012-10-17 Thread Fabio Zadrozny
derstand it or do a > quick experiment. Since indentation is syntactically significant in > Python, I think fixing the interpreter to produce good, readable, > cut-and-pasteable, and Pythonic code is more important than a cosmetic > feature, but less important than true bugs. > -- Actually, if you're in PyDev/Eclipse already, you can just use the interactive shell that PyDev provides: http://pydev.org/manual_adv_interactive_console.html Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

PyDev 2.4.0 Released

2012-02-01 Thread Fabio Zadrozny
plugin that enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

Re: How to make PyDev pep8 friendly?

2012-02-17 Thread Fabio Zadrozny
Python (actually Jython 2.2.1) -- which is also the way that pep8.py was integrated. Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Error importing __init__ declared variable from another package

2012-03-07 Thread Fabio Zadrozny
related to the version of Python > I'm using. > > I'm in the process of trying to solve another related import problem, and > wished to resolve this one in the hope that it might shed light on the > other. But as it works beside the error icon appearing, I might just ignore > it and spare the trouble of precise identification of cause. Please report that as a bug in the PyDev sf tracker (please attach a sample project where this problem can be reproduced). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: other languages API to python

2012-06-01 Thread Fabio Zadrozny
on... Take a look at Boost::Python, Swig, Sip and Cython (personally, I like Boost::Python, but the generated code can be a bit bloated -- but not a problem unless it's a really huge library -- Cython seems nice too, but I've only made few things with it, so, I can't comment much). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 2.2.0 Released

2011-06-27 Thread Fabio Zadrozny
many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Appcelerator http://appcelerator.com/ Aptana http://aptana.com/ Pydev - Pytho

PyDev 2.2.1 Released

2011-07-14 Thread Fabio Zadrozny
at enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabi

Re: Virtual functions are virtually invisible!

2011-07-16 Thread Fabio Zadrozny
blogspot.com/2011/06/overrideimplements-templates-on-pydev.html to explain how I do use it (and in a way that I think should be standard in Python the same way it's in Java). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: How to use python environment created using virtualenv?

2011-08-16 Thread Fabio Zadrozny
reated using virtualenv, what should i do if > i want to use this virtual environment? You have to use the Lib dir from the base python (the one you used to create your virtualenv) -- it needs that to have access to the base python library (i.e.: threading.py, etc). Cheers, Fabio -- http://mail.pyt

PyDev 2.2.2 Released

2011-08-23 Thread Fabio Zadrozny
completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Appcelerator http://appcelerator.com/ Aptana http://aptana.com/ PyDev - Python Development Environment for Ec

Re: Python IDE/Eclipse

2011-08-30 Thread Fabio Zadrozny
; > Any suggestions on getting this to work? In the install dialog, uncheck the 'contact all update sites during install to find required software'. Another option would be getting Aptana Studio 3, which has PyDev preinstalled (see: http://pydev.org/download.html ) Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 2.0 Released

2011-04-04 Thread Fabio Zadrozny
s PyDev? --- PyDev is a plugin that enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, re

Pydev 2.1.0 Released

2011-05-30 Thread Fabio Zadrozny
ing, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Appcelerator http://appcelerator.com/ Aptana http://aptana.com/ Pydev - Python Development Environment for Eclipse http://pydev.org http

PyDev 6.0.0 Released

2017-09-21 Thread Fabio Zadrozny
ent of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com PyVmMonitor - Python Profiler htt

PyDev 6.1.0 Released

2017-11-07 Thread Fabio Zadrozny
;s also a commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for Eclipse h

PyDev 6.2.0 released

2017-11-29 Thread Fabio Zadrozny
extMate bundles and a number of other languages such as Django Templates, Jinja2, Kivy Language, Mako Templates, Html, Javascript, etc. It's also a commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers

Python with PyDev on Visual Studio Code

2018-02-19 Thread Fabio Zadrozny
ous or next class or method through Ctrl+Shift+Up and Ctrl+Shift+Down. See: http://www.pydev.org/vscode/ for more information! Cheers, -- Fabio Zadrozny -- Software Developer PyDev on VSCode http://pydev.org/vscode PyVmMonitor - Profile Python on VSCode http://www.pyvmmo

Re: Python with PyDev on Visual Studio Code

2018-02-19 Thread Fabio Zadrozny
Sorry, it was a glitch on the template when moved to another folder (just fixed). On Mon, Feb 19, 2018 at 10:08 AM, ElChino wrote: > Fabio Zadrozny wrote: > > See: http://www.pydev.org/vscode/ for more information! >> > > That page includes so many dead links that i

PyDev 6.3.1 Released

2018-02-28 Thread Fabio Zadrozny
://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

PyDev 8.3.0 Released

2021-04-10 Thread Fabio Zadrozny
VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

Re: Neither pdb or print() displays the bug

2021-06-06 Thread Fabio Zadrozny
Em qua., 2 de jun. de 2021 às 09:34, Rich Shepard escreveu: > On Wed, 2 Jun 2021, Peter Otten wrote: > > > Do you have unit tests? Those are an excellent tool to ensure that the > > components of an application work as expected and that those components > > have well-defined interfaces. Debugging

Re: How to debug python + curses? [was: RE: Applying winpdb_reborn]

2021-06-06 Thread Fabio Zadrozny
You could try other debuggers (possibly doing a remote debug session or attach to pid). Eclipse-PyDev: https://www.pydev.org/manual_adv_remote_debugger.html VsCode-python: https://code.visualstudio.com/docs/python/debugging PyCharm: https://www.jetbrains.com/help/pycharm/remote-debugging-with-prod

PyDev 5.2.0 Released

2016-08-18 Thread Fabio Zadrozny
commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for

Re: how to automate java application in window using python

2016-09-16 Thread Fabio Zadrozny
Take a look at https://pyautogui.readthedocs.io/en/latest/ On Fri, Sep 16, 2016 at 9:24 AM, meInvent bbird wrote: > you are right, english is not my first language > > i just talk as simple as i can, i do not know previous talking is mean > > > On Friday, September 16, 2016 at 6:22:34 PM UTC+8,

PyDev 5.3.0 Released

2016-10-14 Thread Fabio Zadrozny
tc. It's also a commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Devel

PyDev 5.3.1 Released

2016-11-03 Thread Fabio Zadrozny
Templates, Jinja2, Kivy Language, Mako Templates, Html, Javascript, etc. It's also a commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Sof

PyDev 5.4.0 Released

2016-11-30 Thread Fabio Zadrozny
ails on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com PyVmMonitor

PyDev 5.5.0 Released

2017-01-31 Thread Fabio Zadrozny
theming, TextMate bundles and a number of other languages such as Django Templates, Jinja2, Kivy Language, Mako Templates, Html, Javascript, etc. It's also a commercial counterpart which helps supporting the development of PyDev. Details on Li

PyDev 6.3.2 released

2018-03-21 Thread Fabio Zadrozny
PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

PyDev 6.4.3 Released

2018-07-06 Thread Fabio Zadrozny
many other languages, such as Django Templates, Jinja2, Html, JavaScript, etc. Links: PyDev: http://pydev.org PyDev Blog: http://pydev.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabi

PyDev 6.5.0 released

2018-09-03 Thread Fabio Zadrozny
m/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

How to drop six support and go to Python 3 only?

2018-09-05 Thread Fabio Zadrozny
) so that the codebase becomes pythonic again? Thanks, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 6.5.0 released

2018-09-05 Thread Fabio Zadrozny
m/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

​PyDev 7.0.3 Released

2018-11-09 Thread Fabio Zadrozny
v.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

Re: installing scipy

2016-05-03 Thread Fabio Zadrozny
Are you sure that the Python34 you installed is 64-bits and not the 32-bit version? (you can check that by just executing 'python'... the prompt will show the proper info to you). On Tue, Apr 26, 2016 at 12:33 PM, Heli wrote: > Hi all, > > I have a python34 installed on a windows-64bit machine.

PyDev 5.0.0 Released

2016-05-05 Thread Fabio Zadrozny
LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com PyVmMonitor - Python Profi

PyDev 5.1.2 Released

2016-06-24 Thread Fabio Zadrozny
o Templates, Jinja2, Kivy Language, Mako Templates, Html, Javascript, etc. It's also a commercial counterpart which helps supporting the development of PyDev. Details on LiClipse: http://www.liclipse.com/ Cheers, -- Fabio Zadrozny -- Sof

PyDev 7.2.0 Released

2019-03-27 Thread Fabio Zadrozny
Django Templates, Jinja2, Html, JavaScript, etc. Links: PyDev: http://pydev.org PyDev Blog: http://pydev.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https

Re: "How to protect the python code"

2019-09-06 Thread Fabio Zadrozny
code (just google "python obfuscate code" -- I haven't actually used any of those, but I guess they may be what you want)... -- Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 7.5.0 Released

2020-01-10 Thread Fabio Zadrozny
t for many other languages, such as Django Templates, Jinja2, Html, JavaScript, etc. Links: PyDev: http://pydev.org PyDev Blog: http://pydev.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers,

PyDev 7.6.0 Released

2020-06-11 Thread Fabio Zadrozny
JavaScript, etc. Links: PyDev: http://pydev.org PyDev Blog: http://pydev.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

PyDev 8.0 Released

2020-09-06 Thread Fabio Zadrozny
ogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

PyDev 8.1.0 Released

2020-12-08 Thread Fabio Zadrozny
, JavaScript, etc. Links: PyDev: http://pydev.org PyDev Blog: http://pydev.blogspot.com PyDev on VSCode: http://pydev.org/vscode LiClipse: http://www.liclipse.com PyVmMonitor - Python Profiler: http://www.pyvmmonitor.com/ Cheers, Fabio Zadrozny -- https://mail.python.org/mailman/listinfo/python-list

PyDev 0.9.8.2 released

2005-09-26 Thread Fabio Zadrozny
ore. * Some escaped quotes problems fixed when formatting code * Navigation with Ctrl+Shift+ (up or down) has been slightly improved, so that it goes to the start or the end of the file when no other class or method declaration is found * Other bug-fixes (as ususal) Cheers, Fabio --

PyDev 0.9.8.3 released

2005-10-13 Thread Fabio Zadrozny
* The auto-add '(self):' now works with tabs too Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br PyDev - Python Development Enviroment for Eclipse pydev.s

Re: A macro editor

2005-10-25 Thread Fabio Zadrozny
Hi Jaume, Pydev (http://pydev.sf.net) is an eclipse plugin that does code-completion for jython, so, it might be worth taking a look at it... Cheers, Fabio jau wrote: >Hello mates. > >I'm part of a big project's developer team. We are writting an >application in Java

PyDev 0.9.8.4 released

2005-11-03 Thread Fabio Zadrozny
noteworthy: - * Added option for not using the smart-indent after opening brackets * Some step-by-step instructions of how to get started with pydev have been contributed by Jack Trainor. * Many bugfixes Cheers, Fabio -- Fabi

Re: how to modify code while debugging it without having to stop and then restart debugger

2005-11-09 Thread Fabio Zadrozny
ecause it is so easy to edit python and understand the code that some people don't look for other alternatives, and end up just 'accepting' what they have because it is already better than alternatives -- altough this is only true for some given scenarios). Cheers, Fabio pytho

PyDev 0.9.8.5 released

2005-11-17 Thread Fabio Zadrozny
'sun..Base64', so that other VMs can be targetted * Some code-completion problems in the 'resolution order' regarding tokens in __init__ were solved * Added option so that the user can choose whether to automatically add 'self' or not in method declarations Chee

Re: Eclipse best/good or bad IDE for Python?

2005-12-02 Thread Fabio Zadrozny
lly miss a faster machine for compiling c++). But in the end, as I said, it is a subjective matter, so, you'll have to decide it for yourself. Cheers, Fabio [EMAIL PROTECTED] wrote: >I'm trying to move beyond Emacs/Vim/Kate >and was wondering if Eclipse is better and if it is

Re: Eclipse best/good or bad IDE for Python?

2005-12-05 Thread Fabio Zadrozny
ode-completion for builtins and bicycle repair man integration), and it would be extremely simple to add some scripting capabilities with jython too, so, I don't really think you'd be tied to 'only java' -- altough its core will always be. > >John > > > Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Eclipse best/good or bad IDE for Python?

2005-12-05 Thread Fabio Zadrozny
John J. Lee wrote: >Fabio Zadrozny <[EMAIL PROTECTED]> writes: >[...] > > >>I must also warn you that I'm its current maintainer, and it is *my* >>favorite IDE :-) >> >> >[...] > > >>But in the end, as I said, it is a s

Re: Eclipse best/good or bad IDE for Python?

2005-12-05 Thread Fabio Zadrozny
ng in python even more enjoyable). And sure, you can do it manually, but why bother when you have tools to do it? Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 0.8.5 released!

2005-01-21 Thread Fabio Zadrozny
, and some patches: - Scott Schlesier has provided a patch to configure the editor background and color of the highlighted line. - Sebastian Tusk provided a patch to see watch expressions on debug. Hope you enjoy it... Fabio Zadrozny -- Software

ANN: PyDev 0.9.0 released

2005-02-03 Thread Fabio Zadrozny
, Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br -- http://mail.python.org/mailman/listinfo/python-list

ANN: PyDev 0.9.5 released

2005-06-28 Thread Fabio Zadrozny
synchronized when working in multiple windows with the same file - Code folding improved - Syntax highlighting is not confused by escaped quote + triple quote anymore - Insertion of parentheses now replaces selected text - Some more bugs... Regards, -- Fabio Zadrozny

Re: ANN: PyDev 0.9.5 released

2005-06-29 Thread Fabio Zadrozny
Most things do work, but some still seem to have problems with version 3.1 (and thus it is still not officially supported - but should be, not long from now). Cheers, Fabio Dave Cook wrote: >On 2005-06-28, Fabio Zadrozny <[EMAIL PROTECTED]> wrote: > > > >>Py

Re: Thoughts on Guido's ITC audio interview

2005-07-01 Thread Fabio Zadrozny
t. Though I would still love >to use Eclipse instead, if it only was supported for my line of work >:-/. > >Timothy> it allowed me to use the entire screen for editing if I >Timothy> wished whilst still having everything readily available. > >Eclipse allows this as

ANN: PyDev 0.9.6 released

2005-07-20 Thread Fabio Zadrozny
, -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br PyDev - Python Development Enviroment for Eclipse pydev.sf.net pydev.blogspot.com -- http://mail.python.org/mailman/listinfo/python

ANN: PyDev 0.9.7 released

2005-07-26 Thread Fabio Zadrozny
is no longer supported). Note 3: Java 5.0 is required from now on. Regards, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br PyDev - Python Development Enviroment for Eclipse

Re: ANN: PyDev 0.9.7 released

2005-07-26 Thread Fabio Zadrozny
That's s sort of an Eclipse issue... you have to disable it, restart eclipse and only then will an uninstall appear (it has something to do with some resources eclipse is not able to remove when the plugin is active). Cheers, Fabio Dennis Lee Bieber wrote: >On Tue, 26 Jul 2005

ANN: PyDev 0.9.7 with support to java 1.3 and 1.4 released

2005-08-01 Thread Fabio Zadrozny
l all previous PyDev installations before installing the new release. Note 2: This release only works with Eclipse 3.1 (and from now on, Eclipse 3.0.x is no longer supported). Regards, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engine

Re: pyunit and Eclipse

2005-08-04 Thread Fabio Zadrozny
ut does not show (usually if you re-run it --Ctrl+F11 -- , it works, but not always). If you are running the unit-test for a folder, you don't need the unittest.main(), as it should auto-import the test-cases in the files below the folder (recursively) a

Re: "Compile time" checking?

2005-08-11 Thread Fabio Zadrozny
Just as a note... Pylint is integrated within pydev (http://pydev.sf.net) Cheers, Fabio Qopit wrote: >>Why not just find out, by trying to compile it? :-) >> >> > >This will likely certify me as a python newbie, but... how do you mean? > How do you compile a

ANN: PyDev 0.9.7.99 released

2005-08-19 Thread Fabio Zadrozny
ing jython support possible! Aleks Totic, Scott Schlesier and Vitor Oba for the debugger patches! Eduardo A. Hoff, for the new logo and changes on the site layout! Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simu

[Jython-users] ANN: PyDev 0.9.7.99 released

2005-08-19 Thread Fabio Zadrozny
ing jython support possible! Aleks Totic, Scott Schlesier and Vitor Oba for the debugger patches! Eduardo A. Hoff, for the new logo and changes on the site layout! Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simu

Re: jython debugger

2005-08-24 Thread Fabio Zadrozny
wait one more week... until there, pydev (http://pydev.sf.net) should already have debugger support for jython. Cheers, Fabio [EMAIL PROTECTED] wrote: >Hi, >I am looking for an ide debugger for jython: is there someone with >some suggestions ? > >Thanks, > Adriano &

ANN: PyDev 0.9.8 released

2005-08-29 Thread Fabio Zadrozny
upport for making jython support possible! Vitor Oba for debugger patches! Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br PyDev - Python Development Enviroment f

Re: [Jython-users] Re: [Jython-dev] Parsing grammar for jython available (compatible with python 2.4)

2005-08-30 Thread Fabio Zadrozny
Well, if you post your problems in the pydev bug-tracker, maybe those cases can be sorted out... (one area on where it is really difficult currently, is when you do code-completion and it is unable to parse your module... is this your case?) Cheers, Fabio could ildg wrote: > thanks. >

Re: ANN: PyDev 0.9.8 released

2005-08-30 Thread Fabio Zadrozny
s for any instability in pydev. Well, anyway, I would like to know other opinions in pydev too... as I said, I might bee too biased towards it :-) Cheers, Fabio Max M wrote: >Fabio Zadrozny wrote: > > >>Hi All, >> >>PyDev - Python IDE (Python Development Enviroment

ANN: PyDev 0.9.8.1 released

2005-09-06 Thread Fabio Zadrozny
they start with a '.', because it may not accept relative paths). * relative imports are added to code-completion * local imports are taken into consideration when doing code completion * debugger has 'change support', so, changed variables in a scope appear red Chee

ANN: PyDev 0.9.8.1 released

2005-09-08 Thread Fabio Zadrozny
they start with a '.', because it may not accept relative paths). * relative imports are added to code-completion * local imports are taken into consideration when doing code completion * debugger has 'change support', so, changed variables in a scope appear red Chee

Re: Two questions on PyDev for Eclipse

2005-09-20 Thread Fabio Zadrozny
counting the python installation) -- but as I also develop it, so, I may be kind of impartial ;-) Cheers, Fabio Kenneth McDonald wrote: >The first is general; what are users' experience with PyDev for >Eclipse. It looks pretty good to me right now, but I've only started >play

Re: Two questions on PyDev for Eclipse

2005-09-20 Thread Fabio Zadrozny
Fabio Zadrozny wrote: >Hi, > >for 2: as far as I know, eclipse must have 'local', or at least >'emulated' local access, so, if you have samba access, it should do what >you want. > >for 1... I use it a LOT without any problems for some really big &g

ANN: PyDev 0.9.1 released

2005-03-02 Thread Fabio Zadrozny
;, {}, [] should bring correct suggestions; - relative imports; - other bug-fixes; ------ Regards, Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.co

Re: Creating module skeleton from unit tests

2005-03-04 Thread Fabio Zadrozny
available like that (still, some already are)... and that's the way things work... nothing's always perfect (but at least they evolve). Regards, Fabio Peter Maas wrote: Edvard Majakari schrieb: Greetings, fellow Pythonistas! I'm about to create three modules. As an avid TDD fan I&

ANN: PyDev 0.9.2 released

2005-03-31 Thread Fabio Zadrozny
Hi All, PyDev - Python IDE (Python development enviroment for Eclipse) version 0.9.2 has just been released. Check the homepage (http://pydev.sourceforge.net/) for more details. Regards, Fabio Zadrozny -- Software Developer ESSS - Engineering

check instace already running...

2005-04-09 Thread Fabio Pliger
Hi, is it possibile, in python, to check for an already running instance of an application? My problem is that, if my program i running and the user relaunch it, i don't want to open a new instance and have to instances of the same program running togheter... Can someone help me on this? Fa

Re: change the date string into timestamp

2005-04-09 Thread Fabio Pliger
You can use some date/time modules as: time built in module datetime wxDatetime from wx just take a look in the documentation... they are very simple to use. F.P. "praba kar" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Dear All, > > In Php strtotime() will change a

Re: check instace already running...

2005-04-10 Thread Fabio Pliger
"Aldric L'Hernault" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Sidharth Kuruvila a écrit : > > I haven't tested this. There is probably a better way of doing this > > looking at process information. I use a lock file to mark that the > > program is already running. The pr

printing with wxPython

2005-04-12 Thread Fabio Pliger
Hi! I'm using wxPython to handle my application gui.. So, I have a notebook widget and i have to print the object inside it's tab ... Maybe doing a preview before printing... I know that wx has many objects to handle printing.. i've tryied to use them, but i wasn't able to... Any hint? By now, i s

chaco and wx 2.5....

2005-04-12 Thread Fabio Pliger
anyone know if it's possibile to run chaco with wx 2.5.3 or grater? -- http://mail.python.org/mailman/listinfo/python-list

Re: printing with wxPython

2005-04-13 Thread Fabio Pliger
[EMAIL PROTECTED] > Fabio Pliger wrote: > > Hi! > > I'm using wxPython to handle my application gui.. So, I have a notebook > > widget and i have to print the object inside it's tab ... Maybe doing a > > preview before printing... I know that wx has many objects to

ANN: PyDev 0.9.3 released

2005-04-25 Thread Fabio Zadrozny
Hi All, PyDev - Python IDE (Python development enviroment for Eclipse) version 0.9.3 has just been released. Check the homepage (http://pydev.sourceforge.net/) for more details. Regards, Fabio Zadrozny -- Software Developer ESSS - Engineering

Re: Best way to create temporary file?

2005-04-29 Thread Fabio Pliger
"Frank Millman" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Hi all > > I need to generate potentially large reports from a database, and I > want to offer the option of print preview before actually printing > (using wxPython). I figure that the best way to achieve this i

Re: [wxPython] Many wxPanel forms in 1 wxFrame

2005-04-30 Thread Fabio Pliger
"CYBER" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Is this possible to create 1 wxFrame and > register more than 1 wxPanel in it. > And select the one you want to show at the moment ? > > I'm trying to implement a multistep wizard under wxPython. > I need to be able to h

Re: date to digit

2005-04-30 Thread Fabio Pliger
"Sara Khalatbari" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Is there a program in python that inputs a date & a > time, for example: "2005-04-17 04:20+". And > returns a digit, for example: "3501" instead? > > and if there is such program or built-in function, how

Re: UnicodeDecodeError: 'ascii' codec can't decodee byte 0xff in position 0: ordinal not in range(128)

2013-11-18 Thread Fabio Zadrozny
> > > Viet > > -- > https://mail.python.org/mailman/listinfo/python-list > > You should be able to reproduce the same behavior on PyDev if in your run configuration you select the encoding of the console to be ascii (run > run configurations > select run configuration > common > set encoding to us-ascii). My guess is that you have the problem because the username has non-ascii chars -- and you're receiving it as an unicode and not a string... so, you have to do encode it properly to a string before writing to the connection (i.e.: username.encode('utf-8') + '\r' -- although the encoding may have to be a different one and not utf-8). Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.1.0 released

2013-12-12 Thread Fabio Zadrozny
yDev? --- PyDev is a plugin that enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug

  1   2   3   4   >