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...> - 2006-07-17 23:56:18
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3825915 By: drmaples code seems ok, but try this: pydev 1.2.1 and below has a bug where some errors are silently ignored and 0 tests are reported as running. check that you do not have any syntax errors in the code that you are importing. the best thing to do is to change the code in runfiles.py to look like the code below. (this is fixed in the next ver of pydev) code located here: <ECLIPSE_INSTALL_DIR>/plugins/org.python.pydev.debug_1.2.1/pysrc/runfiles.py try: module = ImportModule(ModuleName(name, system_path)) tests = loader.loadTestsFromModule(module) alltests.append(tests) except Exception, msg: raise # <------ add me this #ok, unable to load the module (probably has not __init__.py in its folder structure) pass ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-17 23:26:33
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3825886 By: fabioz Well, really strange, it should work... As it is difficult for me to reproduce it here, do you think you could try debugging the script yourself? It should be straightforward: Pydev has a script that is called for running the tests: org.python.pydev/pysrc/runfiles.py But now that I'm writing it, I just reminded that your problem might be the pydev version... earlier versions of pydev had a bug in that the unit-test would only run if you selected a folder (the problem was in that script), and not a .py file (this is already fixed, but as you didn't say your pydev version, this might be your problem). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-17 19:01:06
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3825327 By: xsaero00 Unit Test Code: import unittest from Packages.Utilities.validate import * class validateTest( unittest.TestCase ): """ Class to test validation functions """ def testIsLargeID(self): """ Test isLargeID function """ self.assert_( isLargeID( 1 ) ) self.assert_( isLargeID( '1' ) ) self.assert_( isLargeID( u'1' ) ) self.assert_( isLargeID( r'1' ) ) self.assert_( isLargeID( 0 ) ) self.assert_( isLargeID( '0' ) ) self.assert_( isLargeID( 00000000 ) ) self.assert_( isLargeID( '0000000' ) ) self.assert_( isLargeID( MAX_LARGE_ID ) ) self.assert_( isLargeID( MAX_SMALL_ID ) ) self.assert_( isLargeID( MIN_LARGE_ID ) ) self.assert_( not isLargeID( -1 ) ) self.assert_( not isLargeID( '-1' ) ) self.assert_( not isLargeID( u'-1' ) ) self.assert_( not isLargeID( None ) ) self.assert_( not isLargeID( '' ) ) self.assert_( not isLargeID( MAX_LARGE_ID + 1) ) self.assert_( not isLargeID( MIN_LARGE_ID - 1 ) ) self.assert_( not isLargeID( '0.0' ) ) self.assert_( not isLargeID( float( MAX_LARGE_ID ) ) ) def testIsSmallID(self): """ Test isSmallID function """ self.assert_( isSmallID( 1 ) ) self.assert_( isSmallID( '1' ) ) self.assert_( isSmallID( u'1' ) ) self.assert_( isSmallID( r'1' ) ) self.assert_( isSmallID( 0 ) ) self.assert_( isSmallID( '0' ) ) self.assert_( isSmallID( 00000000 ) ) self.assert_( isSmallID( '0000000' ) ) self.assert_( isSmallID( MAX_SMALL_ID ) ) self.assert_( isSmallID( MIN_SMALL_ID ) ) self.assert_( not isSmallID( -1 ) ) self.assert_( not isSmallID( '-1' ) ) self.assert_( not isSmallID( u'-1' ) ) self.assert_( not isSmallID( r'-1' ) ) self.assert_( not isSmallID( None ) ) self.assert_( not isSmallID( '' ) ) self.assert_( not isSmallID( ' ' ) ) self.assert_( not isSmallID( 'as' ) ) self.assert_( not isSmallID( '1a' ) ) self.assert_( not isSmallID( MAX_SMALL_ID + 1) ) self.assert_( not isSmallID( MIN_SMALL_ID - 1 ) ) self.assert_( not isSmallID( '0.0' ) ) self.assert_( not isSmallID( float( MAX_SMALL_ID ) ) ) def TestSuite(): return unittest.makeSuite(validateTest) if __name__ == '__main__': unittest.main() And here are the validation functions: def isLargeID( id ): """ Function to tell whether the id is a large id """ return isInteg( id ) and withinRange( id , MIN_LARGE_ID, MAX_LARGE_ID ) def isSmallID( id ): """ Function to tell whether the id is a small id """ return isInteg( id ) and withinRange( id , MIN_SMALL_ID, MAX_SMALL_ID ) def withinRange( value, min, max ): """ Function to check the range """ if isNumeric( value ) and isNumeric( min ) and isNumeric( max ): value = float( value ) min = float( min ) max = float( max ) return min <= max and value >= min and value <= max ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: John L. <hom...@ho...> - 2006-07-17 18:41:12
|
I've been looking through some of the posts about this issue, but I still haven't found an answer. Whenever I import something that isnt part of the standard python library or a jar (I'm having this issue with jython) it causes the breakpoints in the rest of the program to be ignored. For example, you can set breakpoints and step through the execution of a script up until the import statment, and after that line is executed the debugger ignores all future breakpoints. If I comment out the import statment (i.e. from foo import * ) the debugger functions correctly. I'm using PyDev 1.0.6 Any help would be appreciated. Thanks. _________________________________________________________________ Dont just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ |
From: SourceForge.net <no...@so...> - 2006-07-17 17:11:38
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3825054 By: drmaples can you post the code you are trying to run as "unit test". ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-17 15:24:52
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3824822 By: xsaero00 I have the pyhton path configured correctly. The source forlder in in the PyhtonPath. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-15 16:56:07
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3823145 By: studioakne I have enabled this range of ports for local connections of java and python with no success. It seems that something else is blocked in the background. I think the problem is with communication between pydev/java/eclipse and Outpost Firewall (because Outpost blocks a kind of activity without asking the user as it usually does). Anyway thanks for your help. I'll also try to ask Outpost support. Best regards. s. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-15 12:47:00
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3823019 By: fabioz Well, the ports pydev uses 2 ports for code-completion, one in the range from 50000-55000 and another from 55001-60000, connecting at 127.0.0.1, so, if you have both, java and python able to use those ranges in the localhost, you should be fine (sorry, no specifics on Oupost Firewall). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-15 11:39:53
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3822997 By: studioakne Yes, I have. With the firewall disabled everything works fine. Best regards. s. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-15 11:00:57
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3822986 By: fabioz Oops, sorry, I said debugger, but I meant firewall there... so, have you tried it with your firewall completely disabled? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-15 11:00:11
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3822984 By: fabioz Well, 1st thing: did you try executing it with the debugger stopped? (it might be that you have spaces in your eclipse install or something else -- there's a bug reported for it, and I'm trying to fix it for the next release, and it may or may not be your problem). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-14 23:58:13
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3822741 By: studioakne I have the known problem with code completion (it freezes my Eclipse). It is caused by Outpost Firewall which blocks something but I don't know what. I have added python.exe to "Trusted Programs" and now there is nothing in the log viewer. If somebody is using PyDev on Windows with Outpost, please tell me, what kind of activity should I allow in the firewall rules. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-13 23:36:30
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3821149 By: fabioz Well, it seems like a misconfiguration... If your pythonpath is not correctly configured it might not be able to run your unit-test (so, maybe your project source folder is not correctly configured?) Have you checked: http://fabioz.com/pydev/manual_101_root.html Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-13 23:30:00
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3821145 By: xsaero00 Additional Info: I use PyDev 1.2.1 with Extensions 1.2.1 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-13 23:27:49
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3821144 By: xsaero00 I can't find any docs on how to use Pyhton Unit Test in pyhton file context menues. Ehen I try it it simply gives tels me that 0 tests have been succesfully ran even thought there are TestCase classes in that file. If I just run the files the normal way using unittest.main() they execute just fine. Is there some convention that I need to follow to get that working. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-13 21:29:36
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3821031 By: fabioz Hi Everyone, As of today, only registered sourceforge users will be able to post to this forum. Unfortunatelly, this change was needed because of the increasingly number of spams this forum was receiving. So, now, both options for user-communication: the users forum: https://sourceforge.net/forum/forum.php?forum_id=293649 and the list: https://lists.sourceforge.net/lists/listinfo/pydev-users (which also receives all posts in the users-forum) will only accept posts from registered users. So, for posting in the forum, you have to be a sourceforge user, and for posting in the list you need to subscribe to it (but you don't need to be a sourceforge user). Best Regards, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-11 22:22:56
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3817926 By: fabioz Nice to hear it (trying to reproduce was driving me crazy!) Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-11 21:42:27
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3817856 By: nobody My fault. I was not highlighting the entire variable. I was clicking on WATCH with just the cursor in front of the variable. When I hightlited the entire variable all is fine. Sorry about that Fabio! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-11 11:19:17
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3816742 By: fabioz Have you read: http://pydev.blogspot.com/2006/07/configuring-pydev-to-work-with.html (It's probably because of the auto-reload stuff... the article explains how to config it) Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-11 11:16:55
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3816739 By: nobody Hi folks, I've got a strange problem. I'm new to Pydev but when I try to run a simple program (actually a TurboGears 'raw' build) I can't stop the executing code by clicking on the red button in the console - the environment just hangs. If I kill the executing python from the command line using the output of ps aux then the environment comes back. Same things happens using 'debug' instead of 'run'. Any help/pointers greatfully appreciated. Eclipse 3.2/current, PyDev 1.2.1/current, Python 2.4.3/current on OS X. Regards DAVE ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: Fabio Z. <fa...@gm...> - 2006-07-08 16:39:14
|
Hi All, Pydev and Pydev Extensions 1.0.6 have been released Check http://www.fabioz.com/pydev for details on Pydev Extensions and http://pydev.sf.net for details on Pydev Release Highlights in Pydev Extensions: ----------------------------------------------------------------- - New Feature: Show hierarchy (F4) -- Still in a beta state (currently only looks for subclasses on the same project). - Analysis happens in a Thread, so, you should now always have the latest parse without any halts (this happened only when the option was set to analyze only on save). - Class variable marked as error when self ommitted - when an undefined import is found within a try..except ImportError, it will not be reported. - Allow changing the keybinding for activating the Interactive Console (Ctrl+Enter) - Added a simple text-search that looks for in all .py and .pyw files (will be improved in the future to make a real python-like search). - The keywords that match the 'simple' keywords completion do not show up. Release Highlights in Pydev: ---------------------------------------------- - Assign variables to attributes (Ctrl+2+a): Contributed by Joel Hedlund (this is the first contribution using the new jython scripting engine). - 3 minor 'quirks' were fixed in the indentation engine - The debugger had some changes (so, if you had halts with it, please try i= t again). - Allow changing the keybinding for activating the Find next problem (Ctrl+.) - The debugger step-return had its behaviour changed. - Additional scripts location added to pythonpath in the jython scripting engine - Transversal of nested references improved - Fixed problems with compiled modules when they had 'nested' module structures (e.g.: wx.glcanvas) 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 man= y 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 Pydev Extensions http://www.fabioz.com/pydev Pydev - Python Development Enviroment for Eclipse http://pydev.sf.net http://pydev.blogspot.com |
From: SourceForge.net <no...@so...> - 2006-07-07 22:01:37
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3812231 By: nobody FIXED! The reason why the output was not being shown was that the output was being redirected by a redirect=True being passed to the application a la app = MyApp(redirect=True) Being a Python beginner I did not know the meaning of this flag until now... :-) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |