Re: eclipse+pyDev code complete problem

2013-12-29 Thread Fabio Zadrozny
Hi there, Please create an issue in the PyDev tracker for that: https://sw-brainwy.rhcloud.com/tracker/PyDev/ Cheers, Fabio On Fri, Dec 27, 2013 at 4:54 PM, zhaoyunsong wrote: > dear all, > I am trying to configure eclipse + pydev as my ide, but there seems to be > some proble

PyDev 3.2.0 Released

2013-12-30 Thread Fabio Zadrozny
, -- Fabio Zadrozny -- Software Developer LiClipse http://brainwy.github.io/liclipse PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.3.3 Released

2014-01-28 Thread Fabio Zadrozny
izer doesn't mess with it. * **Refactoring**: - Fixed error when moving resource in PYTHONPATH to a dir out of the PYTHONPATH. - On a search make sure we search only python files, not dlls (which could give OutOfMemory errors and make the search considerably slower). - Multiple fixes on t

PyDev 4.5.1 Released

2016-01-14 Thread Fabio Zadrozny
7;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 Envir

PyDev 4.5.3 Released

2016-01-22 Thread Fabio Zadrozny
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, -- Fabio Zad

Re: Which Python editor has this feature?

2016-01-26 Thread Fabio Zadrozny
7;re just navigating methods, you can do Ctrl+Shift+Up / Down to select the previous/next method, which may be a bit faster). Best Regards, Fabio​ -- https://mail.python.org/mailman/listinfo/python-list

Re: Which Python editor has this feature?

2016-01-26 Thread Fabio Zadrozny
On Mon, Jan 11, 2016 at 6:40 AM, Gordon Levi wrote: > jf...@ms4.hinet.net wrote: > > >It lets you jump between the current cursor position and the line the > upper level indentation start, something like the bracket matching in C > editor. Because of Python use indentation as its code block mark,

PyVmMonitor 1.0.1 released

2016-01-27 Thread Fabio Zadrozny
ccess - Profile on a different machine - Multiple processes support (multiprocessing, django...) - Live sampling/CPU view - Select time range - Group samples by method or line - PyDev integration - PyCharm integration Enjoy! Fabio Zadrozny Software Developer LiClipse

Re: [Python-Dev] Dinamically set __call__ method

2014-11-12 Thread Fabio Zadrozny
a, '__call__') instead of type(a).__dict__['__call__'].__get__(a, type(a)) -- it seems to me it's mostly because of historical reasons, but I'm really curious why is it so (and if maybe it's something which python-dev would consider worth changing in the future --

PyDev 3.9.0 Released

2014-11-13 Thread Fabio Zadrozny
Debugger: getpass properly working with additional arguments (PyDev-460). Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogs

Re: [Python-Dev] Dinamically set __call__ method

2014-11-13 Thread Fabio Zadrozny
On Thu, Nov 13, 2014 at 2:20 AM, Gregory Ewing wrote: > Fabio Zadrozny wrote: > >> can someone from python-dev give some background of why that's the way it >> is? >> > > It's because, with new-style classes, a class is also an > instance (of class

Re: Need Help

2014-12-01 Thread Fabio Zadrozny
.org/manual_adv_pyunit.html also has more details on that) and pass a xml dump file (which I think both support). Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.9.1 Released

2015-01-08 Thread Fabio Zadrozny
issue where an unused import would not be properly removed if it was not a from import. * Fixed exception when drawing minimap overview ruler. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Develo

PyDev 3.9.2 Released

2015-02-06 Thread Fabio Zadrozny
ixed surround with try..finally/except indentation on Ctrl+1 when some line has a comment which has a different indentation. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://www.liclipse.com PyDev - Python Development Enviro

Re: Problem importing libraries installed with PIP in Eclipse

2014-02-15 Thread Fabio Zadrozny
; https://mail.python.org/mailman/listinfo/python-list > Hi Renato, Can you do the following: Create a new script with: import sys print '\n'.join(sorted(sys.path)) And let me know if the paths you have listed in both are equal... Also, which version of PyDev are you using? Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

Re: Problem importing libraries installed with PIP in Eclipse

2014-02-17 Thread Fabio Zadrozny
red out of the box, although it's a commercial counterpart of PyDev -- whose funds help to keep PyDev development going forward). Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

Re: Diagnose a segfault in ipython/readline

2014-03-06 Thread Fabio Zadrozny
ug tracker. > > Thanks again! > > Just a note here (which may or may not work for your case), but you could try using the faulthandler module to see if it can give you a stack trace you can work with... Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.4.1 Released

2014-03-20 Thread Fabio Zadrozny
of 'from' imports sorted. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://brainwy.github.io/liclipse PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

Re: Examples of modern GUI python programms

2014-04-03 Thread Fabio Zadrozny
ually, PyGame is LGPL: http://www.pygame.org/LGPL (it's also what their source files say, although I noted that in their homepage the link which points to http://www.pygame.org/LGPL *wrongly* says GPL when the actual link goes to LGPL and the sources say LGPL). Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

Re: Slightly OT - using PyUIC from Eclipse

2014-04-30 Thread Fabio Zadrozny
lative imports on Python. To overcome that limitation, Python created a workaround to execute a module with: python -m 'module.name' So, If you execute Python as: python -m PyQt5.uic.pyuic (instead of "python C:\Program Files\Python\2.5\Lib\site-packages\PyQt5\uic\pyuic.py") it should work. If you want, you can read an answer on http://stackoverflow.com/questions/14132789/python-relative-imports-for-the-billionth-timefor more details on why it doesn't work and the other way does... Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.5.0 Released

2014-05-20 Thread Fabio Zadrozny
PyDev stdout/stderr redirector now properly uses PYTHONIOENCODING. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://brainwy.github.io/liclipse PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.bl

PyDev 2.8.2 released

2013-09-05 Thread Fabio Zadrozny
to a new date). What is 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, synta

Re: Python Debugger tool

2013-09-06 Thread Fabio Zadrozny
fork of the PyDev debugger, so, using PyDev (which is Open Source) may be an option if you'd like something more visual than the IPython debugger (see: http://pydev.org/manual_adv_debugger.html for the debugger and http://pydev.org/manual_101_root.html for installing/configuring PyDev initi

Re: better and user friendly IDE recommended?

2013-09-12 Thread Fabio Zadrozny
with them a bit and use what works best for you. Cheers, Fabio On Wed, Sep 11, 2013 at 11:14 AM, wrote: > Hey i am a programmer but new to python. Can anyone guide me in knowing > which is a better IDE used to develop web related apps that connect to DB > using python? > -- > htt

Re: python IDE and function definition

2013-09-23 Thread Fabio Zadrozny
f.html) -- additionally, you can also search for methods/classes/attributes directly: http://pydev.org/manual_adv_open_decl_quick.html Cheers, Fabio > > > Chris > -- > https://mail.python.org/**mailman/listinfo/python-list<https://mail.python.org/mailman/listinfo/python-list> > -- https://mail.python.org/mailman/listinfo/python-list

Re: python IDE and function definition

2013-09-23 Thread Fabio Zadrozny
On Mon, Sep 23, 2013 at 2:29 PM, Chris Friesen wrote: > On 09/23/2013 09:32 AM, Fabio Zadrozny wrote: > >> On Mon, Sep 23, 2013 at 12:06 PM, Chris Friesen > <mailto:cbf...@mail.usask.ca>> wrote: >> >> >> Hi all, >> >> I'm look

Re: python IDE and function definition

2013-09-24 Thread Fabio Zadrozny
tance > assertion: > http://www.wingware.com/doc/**edit/helping-wing-analyze-code<http://www.wingware.com/doc/edit/helping-wing-analyze-code> Just to note, PyDev can also use the assert isinstance as well as docstrings (http://pydev.org/manual_adv_type_hints.html) for type hinting. Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.0 Released

2013-11-07 Thread Fabio Zadrozny
etion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://brainwy.github.io/liclipse PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev

Re: PyDev 3.0 Released

2013-11-08 Thread Fabio Zadrozny
to edit at once) - Things are pre-configured (i.e.: it provides a native installer which bundles a jre and other common plugins such as anyedit, startexplorer, egit...) So, currently those are the advantages -- still, as you noted, PyDev is the same on both cases :) Cheers, Fabio On Fri, Nov 8,

Re: Design thought for callbacks

2015-02-26 Thread Fabio Zadrozny
On Wed, Feb 25, 2015 at 9:46 AM, Cem Karan wrote: > > On Feb 24, 2015, at 8:23 AM, Fabio Zadrozny wrote: > > > Hi Cem, > > > > I didn't read the whole long thread, but I thought I'd point you to what > I'm using in PyVmMonitor (http://www.pyvmmonito

PyDev 4.0.0 Released

2015-04-15 Thread Fabio Zadrozny
elements of a list (lst[0].) in the console. (PyDev-531) * py.test xfailed tests are no longer marked as 'Failed' in PyUnit view (PyDev-506) Cheers, -- Fabio Zadrozny -- Software Developer LiClipsehttp://www.liclipse.com PyDev -

PyDev 4.1.0 Released

2015-05-26 Thread Fabio Zadrozny
(PyDev-570) 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 http://www.pyvmm

PyDev 4.2.0 Released

2015-07-07 Thread Fabio Zadrozny
dles 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, --

Re: pyjs - a compiler from Python to JavaScript

2015-08-11 Thread Fabio Zadrozny
g jQuery and other plugins it would be > very hard to use these projects in production. > > Uri. > ​I think that you could try RapydScript: http://rapydscript.pyjeon.com/ Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

Re: pyjs - a compiler from Python to JavaScript

2015-08-11 Thread Fabio Zadrozny
later on if you want -- in fact, when you debug the code you'll be debugging JavaScript and not Python (it's like CoffeScript but with a Python-like syntax). Cheers, Fabio On Tue, Aug 11, 2015 at 3:48 PM, Uri Even-Chen wrote: > Thanks Fabio, it's very interesting. Are you relat

PyDev 4.3.0 released

2015-08-20 Thread Fabio Zadrozny
.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 http://www.pyvmmonitor

PyDev 4.4.0 Released

2015-10-06 Thread Fabio Zadrozny
, etc. 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 - P

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabio Zadrozny
hat differs there... (i.e.: I think that if you do isinstance(d1, datetime) it'll return false, as it seems to be a netcdftime.datetime object). Best Regards, Fabio On Tue, Jun 24, 2014 at 10:28 AM, Fabien wrote: > Hi, > > this is probably not the best place for this topic but I know thi

PyDev 3.7.0 Released

2014-08-27 Thread Fabio Zadrozny
* It's possible to interrupt the console. * **Others** * Autopep8 now works with non ascii sources. * More than 20 levels of indentation no longer causes ArrayOutOfBoundsException. * Fixed some NullPointerExceptions. * A bunch of other bugfixes. C

Re: PyDev Code Analysis

2014-09-02 Thread Fabio Zadrozny
nalysis (which will check errors and warnings such as unused imports / unresolved imports / undefined variables, etc.), it has the options you saw (which are affected by the only on save/on any successful parse). Cheers, Fabio -- https://mail.python.org/mailman/listinfo/python-list

PyDev 3.8.0 Released

2014-09-25 Thread Fabio Zadrozny
ithout extension. Cheers, -- Fabio Zadrozny -- Software Developer LiClipse http://brainwy.github.io/liclipse PyDev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

PyDev 2.2.3 Released

2011-10-06 Thread Fabio Zadrozny
g 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.blogspot.com -- http://mail.

Strange classmethod mock behavior

2011-10-25 Thread Fabio Zadrozny
I'm trying to mock a classmethod in a superclass but when restoring it a strange behavior happens in subclasses (tested on Python 2.5) Anyone knows why this happens? (see test case below for details) Is there any way to restore that original method to have the original behavior? import unittest

Re: Strange classmethod mock behavior

2011-10-25 Thread Fabio Zadrozny
On Tue, Oct 25, 2011 at 10:08 AM, Peter Otten <__pete...@web.de> wrote: > Fabio Zadrozny wrote: > >> I'm trying to mock a classmethod in a superclass but when restoring it >> a strange behavior happens in subclasses (tested on Python 2.5) >> >> Anyone kno

PyDev 2.2.4 Released

2011-11-02 Thread Fabio Zadrozny
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 -- Soft

Re: Debug python from DLL callback?

2011-11-30 Thread Fabio Zadrozny
> Use a remote debugger: http://pydev.org/manual_adv_remote_debugger.html Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: PyDev and multithreaded application debug

2011-12-13 Thread Fabio Zadrozny
am I missing something? > Thanks in advance! Actually, that's expected, as you've only hit the breakpoint at that thread... if you want, you can press the pause button to stop the other threads. Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

PyDev 2.3.0 Released

2011-12-15 Thread Fabio Zadrozny
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.blo

Re: Python Interpreter Error with PyDev (Eclipse IDE)

2011-12-16 Thread Fabio Zadrozny
ou're using... Cheers, Fabio On Thu, Dec 15, 2011 at 10:20 PM, Joshua Jodrey wrote: > Hi, > This is my first email to this list, so I apologize if there's a better > mailing-list for this type of question. > > I'm looking to get started with python development, so I

Re: PySide / PyQt autocompletion in IDEs

2011-12-31 Thread Fabio Zadrozny
> effectively programming, which is a problem :-/ In PyDev you can use a .api file (the same from QScintilla) to be used for the code-completion. Take a look at: http://pydev.org/manual_101_interpreter.html for details (I know it's available for PyQt, but I'm not sure about PySide, but

Re: UnicodeEncodeError when not running script from IDE

2013-02-12 Thread Fabio Zadrozny
Just to note, PyDev does something behind the scenes (it sets the encoding for the console). You may specify which encoding you want at your launch configuration (in the 'common' tab you can set the encoding you want for the shell). Cheers, Fabio On Tue, Feb 12, 2013 at 3:12

PyDev 2.7.2 Released / Help to keep PyDev alive

2013-03-15 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 Ec

Re: LiClipse

2013-03-22 Thread Fabio Zadrozny
v which only serves to confuse users and Eclipse.org does not have a Python version with PyDev). I'd hardly call that a fork thought (and it should be possible to install it as a separate plugin anyways, so, you can use the Eclipse you got from anywhere and just use the update site to get those plu

Re: LiClipse

2013-03-23 Thread Fabio Zadrozny
On Sat, Mar 23, 2013 at 12:38 AM, rusi wrote: > On Mar 23, 7:58 am, Fabio Zadrozny wrote: > > Hello there, > > > > As I've proposed it, let me try to explain it a bit better (if you have > > doubts, I should probably rephrase the proposal). > > > > T

Re: LiClipse

2013-03-23 Thread Fabio Zadrozny
On Sat, Mar 23, 2013 at 12:07 PM, Wanderer wrote: > On Saturday, March 23, 2013 7:11:10 AM UTC-4, Fabio Zadrozny wrote: > > On Sat, Mar 23, 2013 at 12:38 AM, rusi wrote: > > > > > > > > > > On Mar 23, 7:58 am, Fabio Zadrozny wrote: > > > >

Re: LiClipse

2013-03-23 Thread Fabio Zadrozny
On Sat, Mar 23, 2013 at 2:27 PM, rusi wrote: > On Mar 23, 4:11 pm, Fabio Zadrozny wrote: > > On Sat, Mar 23, 2013 at 12:38 AM, rusi wrote: > > > > > > ie Eclipse-4 claims to have made plugin development (for new custom > > > languages) easier. > > >

Re: IDE for GUI Designer

2013-04-07 Thread Fabio Zadrozny
x27;s mostly a matter of saving the ui in designer and going on to implement the actual code for the actions in PyDev/Eclipse (sure, you don't click on a link to add Python code, but for me that separation is good). Cheers, Fabio On Sun, Apr 7, 2013 at 2:40 PM, Wolfgang Keller wrote: &g

PyDev 0.9.8.6 released

2006-01-10 Thread Fabio Zadrozny
and no hangs should appear when trying to do code-completion anymore (if it still hapens, please report it as a bug -- NOTE: a little delay on the first time code-completion is executed is expected, as this is the time the shell is started). * Other bugfixes (as usual) Cheers, Fabio

PyDev 0.9.8.6 released

2006-01-11 Thread Fabio Zadrozny
and no hangs should appear when trying to do code-completion anymore (if it still hapens, please report it as a bug -- NOTE: a little delay on the first time code-completion is executed is expected, as this is the time the shell is started). * Other bugfixes (as usual) Cheers, Fabio

Re: Programming Eclipse plugins in Jython?

2006-01-12 Thread Fabio Zadrozny
asp its concepts, you can probably use it without problems... Altough you'll have to extend the same java interfaces Eclipse provides anyway ;-) Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

ANN: PyDev 0.9.8.7 released

2006-01-17 Thread Fabio Zadrozny
) * Breakpoints can have conditionals(this was contributed by Achim Nierbeck, and was actually provided in release 0.9.8.6, but I forgot to put it in the release notes) * Some other bugfixes are also in this build. Cheers, Fabio -- Fabio Zadrozny

Re: Debugging python 2.2 code with Pydev

2006-01-18 Thread Fabio Zadrozny
use the same interpreter it uses itself -- it is MUCH more customizable than that... just imagine... your IDE crashing because of an error you did in your code... seem pretty crazy to me ;-) Cheers, Fabio Fuzzyman wrote: >*Looks* like the plugin code isn't compatible with Python 2.

Pydev 1.2.2 released

2006-07-24 Thread Fabio Zadrozny
mes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software http://www.esss.com.br

Re: Python Projects Continuous Integration

2006-07-28 Thread Fabio Zadrozny
d with cruise control for building my python projects (buildbot just refused to use pserver correctly for me), and it was just a matter of doing some execs for python for using my actual build scripts (that are in python). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Pydev with Eclipse on OSX Q

2006-08-04 Thread Fabio Zadrozny
cker/index.php?func=detail&aid=1228027&group_id=85796&atid=577329 for details). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Pydev with Eclipse on OSX Q

2006-08-05 Thread Fabio Zadrozny
Hi Fabio,Thanks for your quick response! I was able to solve this. It seems I still wasn't using the right file; however, I didn't expect that Ineeded a 12 KB Unix executable. It didn't seem like the right file tome before.I've had one other report like that, so, I'

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread Fabio Zadrozny
every thing that I can call on a particular data item.This includes % after a string.I would also like browseable help with good examples on whatevermethods and functions and operators it pops up.Thanks,Terrence Have you checked pydev: http://pydev.sf.net Cheers, Fabio -- http://mail.python.org/m

Re: idutils and Python

2006-08-23 Thread Fabio Zadrozny
way, as if it was a simple text-search) b) see all places where a function/whatever is used. This can be handed pretty well with the search that is builtin into Eclipse (ctrl+h). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: idutils and Python

2006-08-23 Thread Fabio Zadrozny
ly Pydev without the extensions (its implementation of go to definition is powered by Bycicle Repair Man, which should be on par with other open-source implementations). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: Raw beginner....

2006-10-08 Thread Fabio Zadrozny
d 'Eric Python IDE' which seems OK, any > alternatives suggested will be looked at Suggestions: http://wiki.python.org/moin/IntegratedDevelopmentEnvironments Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: making a valid file name...

2006-10-18 Thread Fabio Chelly
You should use the s.translate() It's 100x faster: #Creates the translation table ValidChars = ":./,^0123456789abcdefghijklmnopqrstuvwxyz" InvalidChars = "".join([chr(i) for i in range(256) if not chr(i).lower() in ValidChars]) TranslationTable = "".join([chr(i) for i in range(256)]) def valid_f

Re: PyDev + Eclipse (Was: Re: What's the best IDE?)

2006-10-27 Thread Fabio Zadrozny
(accessing 127.0.0.1) in linux. If this is not your problem, please create a bug-report -- check http://pydev.sf.net/faq.html#ref_0 for bug-writing guidelines. Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 1.2.5 Released

2006-11-01 Thread Fabio Zadrozny
value What is PyDev?---PyDev is a plugin that enables users to use Eclipse for Python and Jython 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. Chee

Re: Best Python Editor

2006-06-01 Thread Fabio Zadrozny
much more too) You can check details at http://www.fabioz.com/pydev/manual_adv_interactive_console.html If there's something missing there, you can submit a feature-request... Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 1.1.0 Released

2006-06-06 Thread Fabio Zadrozny
, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software http://www.esss.com.br Pydev Extensions http://www.fabioz.com/pydev

Re: debugging in eclipse+pydev

2006-06-18 Thread Fabio Zadrozny
e_debugger.htmlFor the 'regular' debugger. Check http://fabioz.com/pydev/manual_adv_debugger.html. There is also a 'quick' screencast featuring it at http://showmedo.com/videos/video?name=PydevEclipseFabio&fromSeriesID=8&index=0 (takes you from configurin

Re: Python with Eclipse

2006-06-19 Thread Fabio Zadrozny
en time in the pylint preferences (if that's not it, please report it as a bug in the pydev tracker at sourceforge, so that we can check other possibilities -- https://sourceforge.net/tracker/?group_id=85796&atid=577329). Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 1.2.0 Released

2006-06-19 Thread Fabio Zadrozny
Dev is a plugin that enables users to use Eclipse for Python and Jython 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,

Re: Python with Eclipse

2006-06-19 Thread Fabio Zadrozny
On 6/19/06, Philippe Martin <[EMAIL PROTECTED]> wrote: Dennis Benzinger wrote:> Stan Cook wrote:>> I've been trying to use Eclipse with Python on Linux for a while and>> have noticed something odd.  After running the code or debugging a few>> times, its responsiveness gets really bad.  Upon checkin

Re: Another Eclipse Question with Python

2006-06-20 Thread Fabio Zadrozny
On 6/20/06, Stan Cook <[EMAIL PROTECTED]> wrote: I followed the help instructions to set a watchpoint for avariable, or at lest I tried.  When I hilight the variableand go to the run menu, the "toggle watchpoint" is grayedout and can't be selected as specified.  Is this Python related only?  Just w

Re: Eclipse IDE question

2006-06-25 Thread Fabio Zadrozny
om/pydev/manual_101_root.html contains a complete step-by-step on how to configure pydev and start using it). Cheers,Fabio -- http://mail.python.org/mailman/listinfo/python-list

Pydev 1.2.1 Released

2006-06-29 Thread Fabio Zadrozny
, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software http://www.esss.com.br Pydev Extensions http://www.fabioz.com/pydev Pydev - Python

[Jython-users] Pydev and Pydev Extensions 1.0.6 release

2006-07-08 Thread Fabio Zadrozny
--- PyDev is a plugin that enables users to use Eclipse for Python and Jython 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.

Re: Looking for a python IDE

2006-09-16 Thread Fabio Zadrozny
On 15 Sep 2006 23:31:27 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: HelloI am looking for a good IDE for Python. Commercial or Open Software.   Check http://wiki.python.org/moin/IntegratedDevelopmentEnvironmentsI reccomend Pydev (open source) + Pydev extensions (commercial). Cheers

Pydev 1.2.3 released

2006-09-19 Thread Fabio Zadrozny
ghting What is PyDev? --- PyDev is a plugin that enables users to use Eclipse for Python and Jython 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. Chee

Pydev 1.2.4 Released

2006-09-26 Thread Fabio Zadrozny
t is PyDev? --- PyDev is a plugin that enables users to use Eclipse for Python and Jython 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

How do I separate my parameters with spawnv

2006-11-23 Thread Fabio Chelly
"c:\\upload.txt" logon = "login:pwd" url = "ftp://ftp-myurl"; import os os.spawnv(os.P_WAIT, exe, ["-T", f, "-u", logon, url, "--ftp-ssl"]) Does anyone know How I can execute my command line in python? Thanks and best regards, Fabio -- C

Re: How do I separate my parameters with spawnv

2006-11-23 Thread Fabio Chelly
Thank you very much -- Ceci est une signature automatique de MesNews. Site : http://www.mesnews.net -- http://mail.python.org/mailman/listinfo/python-list

Re: howto catch an Exception and still print the TraceBack?

2006-02-01 Thread Fabio Zadrozny
I find the following very good for most needs: try: raise RuntimeError('err') except: import traceback;traceback.print_exc() -- if you use Pydev, there's a template for that called printexc. Cheers, Fabio Saizan wrote: >In an event-driven application i'd l

Re: howto catch an Exception and still print the TraceBack?

2006-02-02 Thread Fabio Zadrozny
you currently have... so if you think it's worth it... ;-P Cheers, Fabio -- http://mail.python.org/mailman/listinfo/python-list

Re: fairly large webapp: from Java to Python. experiences?

2006-02-06 Thread Fabio Zadrozny
already exists (especially if you have good test cases)... altough I would reccomend jython for new development on that same application. I guess that the main difference is that python usually makes you do the right thing, whereas in java you need to know a lot more about it to manage to do

Re: fairly large webapp: from Java to Python. experiences?

2006-02-06 Thread Fabio Zadrozny
Kent Johnson wrote: >Fabio Zadrozny wrote: > > >>I agree that python code is usually smaller... but what you did is too >>unfair (the code below would be more suitable for the comparrison). >> >>python: >>print "%10.2f" % 10 >> &g

[ANN] PyDev 1.0 released

2006-02-06 Thread Fabio Zadrozny
ywords * Keybindings were added to run the current editor as python (F9) or as jython (Ctrl+F9). Those are customizable in the 'keys' preferences * And many other bug-fixes as usual Cheers, Fabio -- Fabio Zadrozny -- Software

[ANN] Pydev Extended: Pydev Extensions 1.0 release

2006-02-06 Thread Fabio Zadrozny
ed as auto-completions as you type * Quick-outline Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br PyDev - Python Development Enviroment for Eclipse pydev.sf.net pydev.bl

[ANN] Pydev 1.0.1 release

2006-02-07 Thread Fabio Zadrozny
e bug' release (it fixes an out-of-memory error when restoring the interpreter). Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering Simulation and Scientific Software www.esss.com.br Pydev Extensions http://www.fabioz

[ANN] Pydev and Pydev Extensions 1.0.2 release

2006-02-16 Thread Fabio Zadrozny
s in Pydev: --- - Jython debugging now working. - Code coverage does not report docstrings as not being executed. - Freeze when making a 'step-in' fixed in the debugger. - Grammar generated with javacc version 4.0 Cheers, Fabio

Re: editor for Python on Linux

2006-02-20 Thread Fabio Zadrozny
You could try Eclipse with Pydev: http://pydev.sf.net or its commercial counterpart: Pydev Extensions: http://www.fabioz.com/pydev -- runs on linux / mac / windows ... Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS

Re: editor for Python on Linux

2006-02-21 Thread Fabio Zadrozny
Well... pydev has it: http://pydev.sf.net and pydev extensions goes much further: http://www.fabioz.com/pydev Cheers, Fabio jean-michel bain-cornu wrote: >>Boa-Constructor is an IDE rather than an editor. Although it focuses >>on wxPython, it has a good editor. >>

Re: Modify the local scope inside a function

2006-03-01 Thread Fabio Zadrozny
y what the findFrame function does). Cheers, Fabio Sandra-24 wrote: >Hey Crutcher, thanks for the code, that would work. I'm now debating >using that, or using function arguments to get the variables into the >namespace. This would require knowing the variables in the dict ahead >

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

2006-03-06 Thread Fabio Zadrozny
>>TextMate or Emacs. It is quite stupid when indenting, just to name one. >> >> > >This is the main motive I don't use PyDev with Eclipse... It is a lot more >stupid than python-mode on Emacs with regards to indenting... :-( > > > -- Fabio Zadrozn

<    1   2   3   4   >