pydev-users Mailing List for PyDev for Eclipse (Page 20)
Brought to you by:
fabioz
You can subscribe to this list here.
2004 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(2) |
Aug
(4) |
Sep
(3) |
Oct
(1) |
Nov
(2) |
Dec
|
2006 |
Jan
(2) |
Feb
(4) |
Mar
(1) |
Apr
(49) |
May
(123) |
Jun
(162) |
Jul
(96) |
Aug
(59) |
Sep
(69) |
Oct
(73) |
Nov
(71) |
Dec
(29) |
2007 |
Jan
(68) |
Feb
(97) |
Mar
(170) |
Apr
(86) |
May
(78) |
Jun
(62) |
Jul
(114) |
Aug
(71) |
Sep
(145) |
Oct
(107) |
Nov
(43) |
Dec
(41) |
2008 |
Jan
(46) |
Feb
(66) |
Mar
(70) |
Apr
(91) |
May
(119) |
Jun
(104) |
Jul
(92) |
Aug
(83) |
Sep
(68) |
Oct
(146) |
Nov
(76) |
Dec
(70) |
2009 |
Jan
(114) |
Feb
(101) |
Mar
(153) |
Apr
(203) |
May
(85) |
Jun
(100) |
Jul
(109) |
Aug
(93) |
Sep
(48) |
Oct
(2) |
Nov
(1) |
Dec
(15) |
2010 |
Jan
(9) |
Feb
(12) |
Mar
(25) |
Apr
(61) |
May
(107) |
Jun
(75) |
Jul
(76) |
Aug
(91) |
Sep
(100) |
Oct
(46) |
Nov
(47) |
Dec
(28) |
2011 |
Jan
(105) |
Feb
(88) |
Mar
(82) |
Apr
(45) |
May
(46) |
Jun
(76) |
Jul
(73) |
Aug
(77) |
Sep
(53) |
Oct
(65) |
Nov
(58) |
Dec
(57) |
2012 |
Jan
(53) |
Feb
(19) |
Mar
(4) |
Apr
(9) |
May
(2) |
Jun
(3) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(4) |
Nov
(1) |
Dec
(12) |
2013 |
Jan
(6) |
Feb
(2) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(8) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
|
Nov
(2) |
Dec
(2) |
2014 |
Jan
(4) |
Feb
|
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(4) |
Oct
(1) |
Nov
(3) |
Dec
(2) |
2015 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
(4) |
Jun
(1) |
Jul
(5) |
Aug
(12) |
Sep
|
Oct
(1) |
Nov
|
Dec
(15) |
2016 |
Jan
(16) |
Feb
(7) |
Mar
|
Apr
|
May
(3) |
Jun
(8) |
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(2) |
Dec
|
2018 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2021 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2024 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2011-09-08 07:19:15
|
The following forum message was posted by larrylau at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4696249: I mean that egg is a zip file, not a folder. I unpack egg file to a folder, no Unresolved import Problem, and The egg in python-library can expand in Explorer. So, I think, pydev parse egg(zipfile) incorrectly |
From: SourceForge.net <no...@so...> - 2011-09-07 16:13:55
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4696608: That's expected. To evaluate it you have to remove the indentation (until you dedent, it's considered that you're still in the for scope in that example). Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-09-07 15:00:42
|
The following forum message was posted by markdthompson at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4696608: In the PyDev Console interactive shell, hitting enter to add a blank line to the end of a multi-line command doesn't execute the code, it just adds another continuation line. >>> import sys; print('%s %s' % (sys.executable or sys.platform, sys.version)) C:\Python27\python.exe 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] PyDev console: using default backend (IPython not available). >>> for x in range(1,11): ... print repr(x*x).rjust(2), repr(x*x*x).rjust(3), ... print repr(x*x*x).rjust(4) ... ... ... etc. Using Eclipse Indigo w/ PyDev 2.2.2 |
From: SourceForge.net <no...@so...> - 2011-09-07 12:50:00
|
The following forum message was posted by larrylau at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4696249: btw: another error occur when I reopen eclise Description Resource Path Location Type Unresolved import: suds testsuds1.py line 2 PyDev Problem |
From: SourceForge.net <no...@so...> - 2011-09-07 11:06:40
|
The following forum message was posted by larrylau at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4696249: 1. The files in python-library do not work with Link With Editor action. 2. The eggs in python-library, that do not contain folders, can not expand in Explorer. such as suds-0.4-py2.7.egg |
From: Fenn B. <fen...@gm...> - 2011-09-07 02:59:55
|
Hey all, I was wondering if there's a simple way to set up a remote python interpreter for PyDev? (much like the remote debugger) This would be particularly useful, for example, when developing on OSX with your actual application environment on a Linux VM (quite a common practice). The main driver for this is having useful autocomplete/syntax debugging for external modules - certain binary python modules are notoriously difficult to get working on OSX and involve a lot of yak-shaving, which is particularly cumbersome when all you're just trying to remove many erroneous red import errors in PyDev. I've had a look at pycompletion.py and pycompletionserver.py and they look capable of handling a remote server aside from having suitably configurable parameters (like host, path translation, etc). Thoughts? Fenn. |
From: SourceForge.net <no...@so...> - 2011-09-06 16:01:15
|
The following forum message was posted by at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4695031: Hi, I noticed I recent problem when updating my PyDev plugin version. The problem is that the console output is cleared when building the workspace. I have a python file that is outputting some content to the console and I need to debug it. After a while, the workspace is automatically build by Eclipse triggering the PyDev builder. At that time, the console output is cleared. The problem also arise with .launch configuration but I fixed the problem by disableing the option to build workspace prior the launching of the configuration (Preferences -> Run/Debug -> Launching -> Build (if required) before launching). But now, I'm debugging some features of my script and after a bit of time, the automatic build of workspace is triggered which clears the output. This is annoying. It seems like the building process is either clearing the console output or reuse the existing console to output is own stuff. Maybe I should log an issue about this behavior ? Regards and thanks for this great plugin, Matt |
From: SourceForge.net <no...@so...> - 2011-09-06 10:39:29
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4693135: I guess it should -- it doesn't mostly because it was done before that option was available, and so far no one complained :) Please report that as a bug. Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-09-05 12:24:51
|
The following forum message was posted by agronholm at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4693135: When I use autocomplete and it imports something for me, isn't that function supposed to respect the import formatting setting in Preferences->Pydev->Editor->Code Style->Imports? Currently it breaks lines with \ regardless of what I put in the preferences. |
From: SourceForge.net <no...@so...> - 2011-09-04 21:54:38
|
The following forum message was posted by newman2 at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4692360: Hi, if the Autocompletion window comes up, there can be a second window on the right side, which shows the source code of a focused method. I have tried to find where this window is triggered in the source but i cant find it. So I have three questions and maybe someone can help me: 1. How is this second window named ? 2. Around which source code is this second window activated? 3. Where is the text which is shown in this window processed . Maybe someone can give me a idea. thx and regards newman |
From: SourceForge.net <no...@so...> - 2011-09-04 21:50:43
|
The following forum message was posted by rettops at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4689546: I've got the same concern. I'd rather not have each user have to go through a sequence of setup steps that are the same for each workspace. If there's no way to set the shared installation of pydev to have a properly configured interpreter, is there a way for the user to initialize each new workspace from a template that is already configured? That would at least cut it down to one step. |
From: SourceForge.net <no...@so...> - 2011-09-03 15:56:47
|
The following forum message was posted by ptumati at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4689546: Fabioz, thanks for the reply. I am primarly looking to see if this is a design decision or not. I work for a company that offers a modified version of eclipse. I was tasked to integrate pydev plugin and so I have come across this issue. I was not initially sure if this is a design decision or if my integration needs a fix. Now, that it is clear, I think I will put this in the user documentation. thanks for the quick reply. |
From: SourceForge.net <no...@so...> - 2011-09-03 11:22:39
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4689546: It's a design decision (i.e.: in eclipse, preferences are stored under the .metadata in your workspace). The idea is that you shouldn't need to have multiple workspaces for a given interpreter (i.e.: single workspace with multiple projects). So, if you really feel that is something that should be there, can you elaborate a bit on why you need that (if it's something really needed, maybe PyDev could have a way to export that data so that you can import it somewhere else -- would that be enough in this case?). Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-09-02 22:01:42
|
The following forum message was posted by ptumati at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4689546: Hi, I am new to pydev and so this might be a bit naïve question: I installed pydev plugin on my eclipse (3.7). I noticed that every time I create a new workspace, I have to provide the python interpreter path. I tried to find a way to make my /usr/bin/python default so that whenever the user creates a new workspace, he doesn’t have to configure the python interpreter… I came across this: https://sourceforge.net/projects/pydev/forums/forum/293649/topic/3953077?message =8789799 I have also come across another message “yes, pydev does not support the variables defined in eclipse for now.” https://sourceforge.net/projects/pydev/forums/forum/293649/topic/3822328 Does this mean that I can’t define an eclipse variable that sets the default python path so that the user doesn’t have to set it everytime he creates a new workspace? Is this “configure interpreter per workspace” a design decision or am I missing something. Thanks, |
From: SourceForge.net <no...@so...> - 2011-09-02 12:21:17
|
The following forum message was posted by agronholm at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4477776: Good, but the rest of the issues remain. #1 is a constant PITA. Is there anything I can do to help you fix it? |
From: SourceForge.net <no...@so...> - 2011-09-01 17:19:10
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4652696: Just to note, I'm working on this issue now, so, if you wait until tomorrow, there should be a nightly build with this fixed. Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-09-01 17:05:14
|
The following forum message was posted by mkearney at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4652696: I never had to use the archives before now, which says a lot. Thanks, -m |
From: SourceForge.net <no...@so...> - 2011-09-01 00:48:41
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4652696: The update site (http://pydev.org/updates) has archives (in the install dialog you have an option to show old versions). Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-08-31 22:40:34
|
The following forum message was posted by mkearney at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4652696: I just encountered this apparently as a consequence of updating to pydev version 2.2.2.2011082312. I have been using Version 2.2.0.2011062419 for a few months without trouble. It has been good enough for my purposes. I have been searching for an archive site so I could download/update the version that works for well enough for me. I haven't found one yet. Is there such a site? |
From: SourceForge.net <no...@so...> - 2011-08-31 00:58:50
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4477776: Just fixed the issue on imports from Java standard libraries (most current nightly build).. Cheers, Fabio |
From: SourceForge.net <no...@so...> - 2011-08-29 01:08:18
|
The following forum message was posted by at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4657770: Yes, bug is fixed! Thank you. |
From: SourceForge.net <no...@so...> - 2011-08-24 23:01:44
|
The following forum message was posted by floridajo at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4672487: I found it in someones' blog. The manual should really have this as this guy had this problem back in 2008. But for other's having this problem it is here: [IMG]http://i1206.photobucket.com/albums/bb458/onjo/Blender%20Experiments/Py32.j pg[/IMG] Thanks agronholm, I think this is what you meant, but I just now saw your post. |
From: SourceForge.net <no...@so...> - 2011-08-24 22:52:20
|
The following forum message was posted by agronholm at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4672487: Try giving it the python executable in bin? |
From: SourceForge.net <no...@so...> - 2011-08-24 22:45:41
|
The following forum message was posted by agronholm at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4477776: I'm bumping this because only one of these issues (#7) has been fixed. The rest remain a problem, especially #1. There's also a new problem concerning Java imports in Jython projects -- imports from Java's standard libraries (java.*, javax.*) show error markers now, saying it can't find those classes. This was not an issue before. |
From: SourceForge.net <no...@so...> - 2011-08-24 22:38:08
|
The following forum message was posted by floridajo at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4672487: Okay, when I try to find the Python interpreter with Auto Config, it finds this: [IMG]http://i1206.photobucket.com/albums/bb458/onjo/Blender%20Experiments/Py26.j pg[/IMG] Which is 2.6, when I do it manually to find 3.2, I come up with this, [IMG]http://i1206.photobucket.com/albums/bb458/onjo/Blender%20Experiments/PyInte rpreter.jpg[/IMG] but the 'Open' button is not enabled, so this must not be what it is looking for. Any ideas? |