Re: Pycharm IDE

2023-04-20 Thread Thomas Passin
On 4/19/2023 7:48 PM, dn via Python-list wrote: On 20/04/2023 08.59, Thomas Passin wrote: On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo!  Where's pylint when I need it? but (and you design

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
On 20/04/2023 08.59, Thomas Passin wrote: On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo!  Where's pylint when I need it? but (and you designed it this way - right?) an excellent object-less

Re: Pycharm IDE

2023-04-19 Thread Thomas Passin
On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo! Where's pylint when I need it? -- https://mail.python.org/mailman/listinfo/python-list

Re: Pycharm IDE

2023-04-19 Thread Mark Bourne
at 11:17:52 PM MDT, Kevin M. Wilson via Python-list wrote:   print (f'"I am thinking of a number between 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string printed to the

Re: Pycharm IDE

2023-04-19 Thread Thomas Passin
tween 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string printed to the user, as a prompt!The Pycharm IDE is showing that it expects a single quotation mark or ')'! No error messa

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
On 19/04/2023 21.13, Kevin M. Wilson wrote: Sorry the code snippet I sent was what is written in PyCharm. LIMIT is defined and is not causing an error! PyCharm is flagging the Parentheses at the end. It is not seeing the Parentheses as the end of the print function. def play_game(): number= ra

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
April 18, 2023 at 11:17:52 PM MDT, Kevin M. Wilson via Python-list wrote: print (f'"I am thinking of a number between 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string pr

Re: Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
;"I am thinking of a number between 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string printed to the user, as a prompt!The Pycharm IDE is showing that it expects a single quotation

Re: Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
print (f'"I am thinking of a number between 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string printed to the user, as a prompt!The Pycharm IDE is showing that it expects a

Re: Pycharm IDE

2023-04-18 Thread aapost
On 4/18/23 19:18, Kevin M. Wilson wrote: Why complain about a 'comma', or a ')'??? print (f'"I am thinking of a number between 1 to {LIMIT}\n") my version says it expects ' first (to close the fstring) then on a new line below it, it mentions the comma and ) I believe that is just showing

Re: Pycharm IDE

2023-04-18 Thread Thomas Passin
'"I am thinking of a number between 1 to {LIMIT}\n")Or is this a setting in the IDE, I need to reassign? I'm not sure what error you are talking about, but the f-string isn't closed (and doesn't appear to need the double quotes, either, though that is not an error). S

Re: Pycharm IDE

2023-04-18 Thread dn via Python-list
quot;I am thinking of a number between 1 to {LIMIT}\n")Or is this a setting in the IDE, I need to reassign? The code is a bit difficult to read (wrapping), but the error message may be an assumption (on Python's part). Should the line be: print( F"I am thinking...

Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
Greetings... Kevin here:I need help, as you have guessed!I have this line: The Print Statement... Why complain about a 'comma', or a ')'???def play_game(): number = random.randint(1, LIMIT) print (f'"I am thinking of a number between 1 to {LIMIT}\n")

Re: Friday finking: IDE 'macro expansions'

2023-03-18 Thread dn via Python-list
t sounds like you're *not* using the IDE/editor for that. (I'm not judging, I'm trying to relate your answer to dn's original question.) It is a good example of a facility or 'power' of an IDE - even if there's room for more information... The team I'm cu

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Peter J. Holzer
On 2023-03-18 16:06:49 +, Alan Gauld wrote: > On 18/03/2023 12:15, Peter J. Holzer wrote: > >> I think you might be meaning TurboPascal, Delphi's forerunner. It just > >> had a compiler and text editor. > > > > I'd still classify Turbo Pascal as an I

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Alan Gauld
On 18/03/2023 12:15, Peter J. Holzer wrote: >> I think you might be meaning TurboPascal, Delphi's forerunner. It just >> had a compiler and text editor. > > I'd still classify Turbo Pascal as an IDE. It wasn't a standalone > compiler you would invoke on source

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Roel Schroeven
y. > > > > Back when Delphi first came out, when I first used it, I don't remember > > any IDE; one just used a text editor. > > I think you might be meaning TurboPascal, Delphi's forerunner. It just > had a compiler and text editor. I'd still class

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Thomas Passin
, when I first used it, I don't remember any IDE; one just used a text editor. I think you might be meaning TurboPascal, Delphi's forerunner. It just had a compiler and text editor. I'd still classify Turbo Pascal as an IDE. It wasn't a standalone compiler you would invoke

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Thomas Passin
On 3/18/2023 4:46 AM, Alan Gauld wrote: On 17/03/2023 17:55, Thomas Passin wrote: I used Delphi and Smalltalk/V which both pretty much only exist within their own IDEs and I used their features extensively. Back when Delphi first came out, when I first used it, I don't remember any IDE

Re: Friday finking: IDE 'macro expansions'

2023-03-18 Thread 2QdxY4RzWzUUiLuE
n. The other generates a pyproject.toml /setup.cfg > directory structure with a main.py referenced as a console > script. from setup.cfg You don't describe the process for using those programs, but if you "have two Python programs," then it sounds like you're *not* using

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Peter J. Holzer
ut, when I first used it, I don't remember > > any IDE; one just used a text editor. > > I think you might be meaning TurboPascal, Delphi's forerunner. It just > had a compiler and text editor. I'd still classify Turbo Pascal as an IDE. It wasn't a standalone

Re: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Weatherby,Gerard
via Python-list Date: Thursday, March 16, 2023 at 6:59 PM To: 'Python' Subject: Friday finking: IDE 'macro expansions' *** Attention: This is an external email. Use caution responding, opening attachments or clicking on links. *** It is a long, long, time since I've thr

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-18 Thread Alan Gauld
On 17/03/2023 17:55, Thomas Passin wrote: >> I used Delphi and Smalltalk/V which both pretty much only exist within >> their own IDEs and I used their features extensively. > > Back when Delphi first came out, when I first used it, I don't remember > any IDE; one j

Re: Friday finking: IDE 'macro expansions'

2023-03-17 Thread dn via Python-list
On 18/03/2023 02.44, Thomas Passin wrote: On 3/17/2023 9:38 AM, Simon Ward wrote: On Fri, Mar 17, 2023 at 02:05:50PM +0100, Roel Schroeven wrote: Even better than simply highlighting is (IMO) a thing called "Rainbow Braces" or "Bracket Pair Colorization" I recently learned about: both braces o

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-17 Thread MRAB
if-so, which ones? When I'm writing Java/C++/C# yes, I need all the IDE help I can get. Netbeans or Eclipse being my tools of choice. And in my Windows days I used Delphi and Smalltalk/V which both pretty much only exist within their own IDEs and I used their features extensively. Back when De

Re: Fwd: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Thomas Passin
C++/C# yes, I need all the IDE help I can get. Netbeans or Eclipse being my tools of choice. And in my Windows days I used Delphi and Smalltalk/V which both pretty much only exist within their own IDEs and I used their features extensively. Back when Delphi first came out, when I first used i

Fwd: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Alan Gauld
Oops! I meant to send this to the group not just Dave. Forwarded Message On 16/03/2023 22:55, dn via Python-list wrote: > Do you make use of your IDE's expansionist tendencies, and if-so, which > ones? When I'm writing Java/C++/C# yes, I need all the ID

Re: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Thomas Passin
On 3/17/2023 9:38 AM, Simon Ward wrote: On Fri, Mar 17, 2023 at 02:05:50PM +0100, Roel Schroeven wrote: Even better than simply highlighting is (IMO) a thing called "Rainbow Braces" or "Bracket Pair Colorization" I recently learned about: both braces of a matching pair get the same color, while

Re: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Simon Ward
On Fri, Mar 17, 2023 at 02:05:50PM +0100, Roel Schroeven wrote: Even better than simply highlighting is (IMO) a thing called "Rainbow Braces" or "Bracket Pair Colorization" I recently learned about: both braces of a matching pair get the same color, while other pairs get other colors. I have to

Re: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Roel Schroeven
Op 17/03/2023 om 0:54 schreef Thomas Passin: What I find more useful is matching brackets/parens/braces.  Not inserting them but highlighting or (better) jumping to the matching one when asked. That is very helpful indeed. Even better than simply highlighting is (IMO) a thing called "Rainbow B

Re: Friday finking: IDE 'macro expansions'

2023-03-17 Thread Simon Ward
On Fri, Mar 17, 2023 at 11:55:38AM +1300, dn via Python-list wrote: Do you make use of your IDE's expansionist tendencies, and if-so, which ones? Unix (well, GNU/Linux) is my IDE ;) Simon -- https://mail.python.org/mailman/listinfo/python-list

Re: Friday finking: IDE 'macro expansions'

2023-03-16 Thread Grant Edwards
cursor somewhere I don't want it. Maybe it matters how good a typist you are, but I don't really concentrate that hard on watching the letters show up on the screen, so any sort of "IDE know better than you do" stuff tends to trip me up. > Of course, for Python code I d

Re: Friday finking: IDE 'macro expansions'

2023-03-16 Thread 2QdxY4RzWzUUiLuE
kling') ... Long time (since the 1980s, when you had to edit config.h and compile it yourself) insane emacs enthusiast and "Unix is my IDE" claimant here. I used one language that required a special editor because the "source code" was a semi-compiled byte stream instea

Re: Friday finking: IDE 'macro expansions'

2023-03-16 Thread Thomas Passin
're not talking about jinja2) With both, one types an abbreviated-name and the IDE will expand it into appropriate code. For (LiveTemplate) example, typing compli and pressing Tab induces PyCharm to add the following to the program[me]:     [ ! for ! in !drop-down menu! if ! ] It offers further

Re: Friday finking: IDE 'macro expansions'

2023-03-16 Thread Mats Wichmann
talking about jinja2) With both, one types an abbreviated-name and the IDE will expand it into appropriate code. For (LiveTemplate) example, typing compli and pressing Tab induces PyCharm to add the following to the program[me]:     [ ! for ! in !drop-down menu! if ! ] It offers further ty

Friday finking: IDE 'macro expansions'

2023-03-16 Thread dn via Python-list
the Settings. Isn't it incredible how many there are? Idly noted that there are two short-cut or macro-expansion types of facilities: - Postfix Completion, (nothing to do with email or polish notation) and - Live Templates (again, we're not talking about jinja2) With both, o

Re: Pycharm IDE: seeking an assist!

2022-03-21 Thread Dennis Lee Bieber
On Mon, 21 Mar 2022 15:36:50 + (UTC), "Kevin M. Wilson" declaimed the following: >The use of Java options environment variables detected. >Such variables override IDE configuration files (*.vmoptions) and may cause >performance and stability issues. >Please c

Pycharm IDE: seeking an assist!

2022-03-21 Thread Kevin M. Wilson via Python-list
Greetings Python coders,     I have installed the Pycharm IDE, and upon successfully auto install of the path/environment statements. The IDE opened and displayed (bottom right corner):  The use of Java options environment variables detected. Such variables override IDE configuration

ANN: Wing Python IDE 8.0.4 has been released

2021-09-29 Thread Wingware
tails:  https://wingware.com/news/2021-09-28 Downloads:   https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysi

ANN: Wing Python IDE 8.0.3 has been released

2021-09-01 Thread Wingware
files with non-ascii characters, and makes several other improvements. Details:  https://wingware.com/news/2021-08-31 Downloads:   https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing

ANN: Wing Python IDE version 8 has been released

2021-07-27 Thread Wingware
) build, a new Nord style theme, reduced application startup time, and much more. Details:  https://wingware.com/news/2021-07-26 Downloads:   https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing

ANN: Wing Python IDE 7.2.9 has been released

2021-04-12 Thread Wingware
://wingware.com/news/2021-04-12 Downloads:   https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis provides

Re: Unable to find 'edit with ide' option in the Context menu

2021-03-31 Thread Terry Reedy
On 3/31/2021 2:11 AM, Arjav Jain wrote: I am using the lastest version of python recently. But I am facing a problem with the python files, When I am right clicking any python file there is no option for `Edit with idle'. I have repaired the python installation too, but this doesn

Unable to find 'edit with ide' option in the Context menu

2021-03-31 Thread Arjav Jain
I am using the lastest version of python recently. But I am facing a problem with the python files, When I am right clicking any python file there is no option for `Edit with idle'. I have repaired the python installation too, but this doesn't solves my problem, please help! Sent f

Re: IDE tools to debug in Python?

2021-02-06 Thread Grant Edwards
On 2021-02-06, Barry wrote: > > >> On 6 Feb 2021, at 08:06, Grant Edwards wrote: >> >> On 2021-02-05, Schachner, Joseph wrote: >> >>> Indeed there are many. One I have not seen listed here yet, that is >>> quite light, starts quickly, but does have good debugging capability >>> is PyScripter

Re: IDE tools to debug in Python?

2021-02-06 Thread Barry
> On 6 Feb 2021, at 08:06, Grant Edwards wrote: > > On 2021-02-05, Schachner, Joseph wrote: > >> Indeed there are many. One I have not seen listed here yet, that is >> quite light, starts quickly, but does have good debugging capability >> is PyScripter. Completely free, downloadable from

Re: IDE tools to debug in Python?

2021-02-06 Thread Grant Edwards
On 2021-02-05, Schachner, Joseph wrote: > Indeed there are many. One I have not seen listed here yet, that is > quite light, starts quickly, but does have good debugging capability > is PyScripter. Completely free, downloadable from SourceForge, 32 > or 64 bit versions (must match your Python t

Re: IDE tools to debug in Python?

2021-02-06 Thread Terry Reedy
On 2/5/2021 3:34 AM, Alan Gauld via Python-list wrote: On 27/01/2021 18:32, flaskee via Python-list wrote: While print() is groovy and all, if anyone runs across a non-pdb python debugger (standalone or IDE-based) please let me know. There are many. But why must it be non-pdb? That seems

Re: IDE tools to debug in Python?

2021-02-05 Thread boB Stepp
On Sat, Feb 06, 2021 at 01:27:34AM +, flaskee via Python-list wrote: On Friday, February 5, 2021 5:03 PM, Schachner, Joseph wrote: As regards the Alan pdb note; yes -- I was trying for a full IDE & integrated debugging, along the lines of Visual Studio, pre-sneaky-Telemetry API. Yo

RE: IDE tools to debug in Python?

2021-02-05 Thread flaskee via Python-list
ripter/pyscripter Sourceforge has had problems in the past with allowing virus-infected downloads. Three of which I have seen myself. --- As regards the Alan pdb note; yes -- I was trying for a full IDE & integrated debugging, along the lines of Visual Studio, pre-sneaky-Telemetry API.

RE: IDE tools to debug in Python?

2021-02-05 Thread Schachner, Joseph
; Commercially Sensitive Business Data -Original Message- From: Alan Gauld Sent: Friday, February 5, 2021 3:34 AM To: python-list@python.org Subject: Re: IDE tools to debug in Python? On 27/01/2021 18:32, flaskee via Python-list wrote: > > While print() is groovy and all, > if an

Re: IDE tools to debug in Python?

2021-02-05 Thread Alan Gauld via Python-list
On 27/01/2021 18:32, flaskee via Python-list wrote: > > While print() is groovy and all, > if anyone runs across a non-pdb python debugger (standalone or IDE-based) > please let me know. > There are many. But why must it be non-pdb? That seems rather arbitrary. Or do you really

Re: IDE tools to debug in Python?

2021-02-04 Thread Thomas Jollans
On 27/01/2021 19:32, flaskee via Python-list wrote: > > While print() is groovy and all, > if anyone runs across a non-pdb python debugger (standalone or IDE-based) > please let me know. > > I too was blessed with IDE-based debugging (in the 90's!) > * where

Re: IDE tools to debug in Python?

2021-01-28 Thread Skip Montanaro
> > > Python is an interactive language. You can develop a lot while working > > on a Python console. Then copy and paste into a program. > > Absolutely, the humble interactive prompt is often overlooked > as a development tool. It's not as good as the "evaluate > expression" tool in the Smalltalk

Re: IDE tools to debug in Python?

2021-01-27 Thread Alan Gauld via Python-list
On 27/01/2021 19:27, Dietmar Schwertberger wrote: > Python is an interactive language. You can develop a lot while working > on a Python console. Then copy and paste into a program. Absolutely, the humble interactive prompt is often overlooked as a development tool. It's not as good as the "eval

Re: IDE tools to debug in Python?

2021-01-27 Thread J. Pic
écrit : > > Thank you J. Pic. > > Out of everything today, > (and given my priority is Python/Flask debugging) > it looks like Wing IDE is something to dig into. > > Thanks > > > Sent with ProtonMail Secure Email. > > ‐‐‐ Original Message ‐‐‐ > On Wed

Re: IDE tools to debug in Python?

2021-01-27 Thread flaskee via Python-list
Thank you J. Pic. Out of everything today, (and given my priority is Python/Flask debugging) it looks like Wing IDE is something to dig into. Thanks Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ On Wednesday, January 27, 2021 4:09 PM, J. Pic wrote: > Thonny, win

Re: IDE tools to debug in Python?

2021-01-27 Thread J. Pic
Thonny, winpdb/winpdb-rebord, eric4, pudb, web-pdb, vy, mu, netbeans, eclipse, pdbpp... Also see: https://wiki.python.org/moin/PythonDebuggingTools "Changing a variable" -> that's basically evaluating code ? -> supported in all debuggers I suppose -- https://mail.python.org/mailman/listinfo/pyth

Re: IDE tools to debug in Python?

2021-01-27 Thread Paul Bryan via Python-list
source) and autocomplete when user is typing. In my experience, it's heavyweight, and creates more reliance on the features of an IDE than I feel is healthy (IDE becomes a crutch). I suspect PyCharm is doing much of the same. On Wed, 2021-01-27 at 15:36 -0500, C W wrote: > I don't know ex

Re: IDE tools to debug in Python?

2021-01-27 Thread C W
I meant bottom right corner, not left. opps! On Wed, Jan 27, 2021 at 3:36 PM C W wrote: > I don't know exactly, but it shows as inspection on the bottom left corner. > > I believe it's indexing in the background. > > On Wed, Jan 27, 2021 at 3:25 PM Grant Edwards > wrote: > >> On 2021-01-27, C W

Re: IDE tools to debug in Python?

2021-01-27 Thread C W
I don't know exactly, but it shows as inspection on the bottom left corner. I believe it's indexing in the background. On Wed, Jan 27, 2021 at 3:25 PM Grant Edwards wrote: > On 2021-01-27, C W wrote: > > I'm not expert in Python, but I sure tried many IDEs to kick off Python > > programming. >

Re: IDE tools to debug in Python?

2021-01-27 Thread Grant Edwards
On 2021-01-27, C W wrote: > I'm not expert in Python, but I sure tried many IDEs to kick off Python > programming. > > I started with PyCharm, but I had a problem with it constantly scanning the > background, even after I turned that feature off. What is it scanning? > My favorite (I'm using now

Re: IDE tools to debug in Python?

2021-01-27 Thread flaskee via Python-list
gt; >>> Wiadomość napisana przez flaskee via Python-list w >>> dniu 27.01.2021, o godz. 19:32: >>> >>>  >>> While print() is groovy and all, >>> if anyone runs across a non-pdb python debugger (standalone or IDE-based) >>> pl

Re: IDE tools to debug in Python?

2021-01-27 Thread Dietmar Schwertberger
ith Python extension, it's very light. Recently also started background scanning, but that's generally done in 30 seconds. There's also Wing IDE (Pro). The best is to try at least PyCharm and Wing IDE (Pro) and maybe one or more of the others. Besides the debugger experience from

Re: IDE tools to debug in Python?

2021-01-27 Thread C W
with Python > it is worth investing in professional edition though. > > Michał Jaworski > > > Wiadomość napisana przez flaskee via Python-list > w dniu 27.01.2021, o godz. 19:32: > > > >  > > While print() is groovy and all, > > if anyone runs across a n

Re: IDE tools to debug in Python?

2021-01-27 Thread Michał Jaworski
021, o godz. 19:32: > >  > While print() is groovy and all, > if anyone runs across a non-pdb python debugger (standalone or IDE-based) > please let me know. > > I too was blessed with IDE-based debugging (in the 90's!) > * where you can set break point(s); >

IDE tools to debug in Python?

2021-01-27 Thread flaskee via Python-list
While print() is groovy and all, if anyone runs across a non-pdb python debugger (standalone or IDE-based) please let me know. I too was blessed with IDE-based debugging (in the 90's!) * where you can set break point(s); * have the program stop right before a suspected failure point; *

ANN: Wing Python IDE 7.2.8 has been released

2021-01-14 Thread Wingware
s: https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis provides auto-completion, auto-editing, and refactorin

ANN: Wing Python IDE 7.2.7 has been released

2020-11-16 Thread Wingware
: https://wingware.com/news/2020-11-13 Downloads: https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis pro

ANN: Wing Python IDE 7.2.6 has been released

2020-10-08 Thread Wingware
://wingware.com/news/2020-10-07 Downloads: https://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis provides

ANN: Wing Python IDE version 7.2.5 has been released

2020-09-10 Thread Wingware
://wingware.com/downloads == About Wing == Wing is a light-weight but full-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis provides auto-completion, auto-editing, and refactoring that spe

ANN: Wing Python IDE version 7.2.4 has been released

2020-08-18 Thread Wingware
-featured Python IDE designed specifically for Python, with powerful editing, code inspection, testing, and debugging capabilities. Wing's deep code analysis provides auto-completion, auto-editing, and refactoring that speed up development. Its top notch debugger works with any Python

Re: Non IDE development strategy - what do others do that's fairly simple?

2020-08-02 Thread Chris Green
Cameron Simpson wrote: [snip fantastic explanation] Cameron, thanks for that long and detailed explanation. -- Chris Green · -- https://mail.python.org/mailman/listinfo/python-list

Re: Non IDE development strategy - what do others do that's fairly simple?

2020-08-01 Thread Cameron Simpson
On 29Jul2020 11:20, Chris Green wrote: >The existing code simply lives in ~/bin with a couple of modules in >~/bin/pymods (which directory is in my PYTHONPATH). > >I use mercurial for configuration management of the code, directly in >the ~/bin directory. This works fine for the sort of minor bug

Re: Non IDE development strategy - what do others do that's fairly simple?

2020-08-01 Thread Cameron Simpson
On 30Jul2020 21:15, Marco Sulla wrote: >What you want is a branch, I guess. > >https://www.mercurial-scm.org/wiki/Branch > >For simplicity, I suggest you have two different directories: one for the >development branch and the other for the production branch. Yes to this advice. And I am also an

Re: Non IDE development strategy - what do others do that's fairly simple?

2020-07-30 Thread Marco Sulla
What you want is a branch, I guess. https://www.mercurial-scm.org/wiki/Branch For simplicity, I suggest you have two different directories: one for the development branch and the other for the production branch. -- https://mail.python.org/mailman/listinfo/python-list

Re: Non IDE development strategy - what do others do that's fairly simple?

2020-07-29 Thread 2QdxY4RzWzUUiLuE
On 2020-07-29 at 11:20:42 +0100, Chris Green wrote: > I have a few python programs that I have written which I need to do > some fairly extensive changes to (to get from gtk to gobject and to > move to Python 3). This is on a Linux (xubuntu 20.04) system. I use > the command line to do just abo

Non IDE development strategy - what do others do that's fairly simple?

2020-07-29 Thread Chris Green
I have a few python programs that I have written which I need to do some fairly extensive changes to (to get from gtk to gobject and to move to Python 3). This is on a Linux (xubuntu 20.04) system. I use the command line to do just about everything (even though the program is GUI!) and so I tend

ANN: Wing Python IDE 7.2.3 has been released

2020-07-14 Thread Wingware
Wing 7.2.3 has been released. This update introduces a How-To for using Wing with PyXLL, adds folding in .pyi and .pi files, fixes opening files from the macOS Catalina Finder, and makes many usability improvements.For details see the change log: https://wingware.com/pub/wingpro/7.2.3.0/C

Re: RV: CodecRegistryError problem for an IDE.

2020-05-16 Thread Dieter Maurer
Bryan Cabrera Ramírez wrote at 2020-5-15 19:53 +0200: > I'm trying to insall an INET package for an IDE called OMNeT++ and when > I try to build the INET the following happens in the command window: > > Fatal Python error: Py_Initialize: unable to load the file system co

Re: RV: CodecRegistryError problem for an IDE.

2020-05-15 Thread MRAB
On 2020-05-15 18:53, Bryan Cabrera Ramírez wrote: Hi, I'm trying to insall an INET package for an IDE called OMNeT++ and when I try to build the INET the following happens in the command window: Fatal Python error: Py_Initialize: unable to load the

RV: CodecRegistryError problem for an IDE.

2020-05-15 Thread Bryan Cabrera Ramírez
Hi,   I'm trying to insall an INET package for an IDE called OMNeT++ and when I try to build the INET the following happens in the command window:     Fatal Python error: Py_Initialize: unable to load the file system codec   File "C:\Python27\Lib\encoding

ANN: Wing Python IDE version 7.2.2 released

2020-04-01 Thread Wingware
Wing Python IDE version 7.2.2 introduces a How-To for using Wing Pro's remote development features with AWS, adds support for Python 3 enums, allows constraining Find Uses of imported symbols to only the current file, and makes a number of usability and stability improvements. == Down

ANN: Wing Python IDE 7.2.1.0 released

2020-01-30 Thread Wingware
Wing 7.2.1 has been released. This update fixes debug process group termination, avoids failures seen when pasting some Python code, prevents crashing in vi browse mode when the first line of the file is blank, and fixes some other usability issues. For details see the change log: https://wi

ANN: Wing Python IDE 7.2 released

2020-01-21 Thread Wingware
Wing 7.2 has been released. This version adds auto-formatting with Black and YAPF, expanded support for virtualenv, support for Anaconda environments, easier debugging of modules launched with python -m, simplified manually configured remote debugging, and other improvements. == Auto-Reformat

ANN: Wing Python IDE 7.1.3

2019-11-15 Thread Wingware
Wing 7.1.3 has been released. This version adds improved and expanded documentation and support for matplotlib, improves the accuracy of code warnings, fixes automatically debugging child processes on Windows with Python 3.8, fixes installing the remote agent from .rpm or .deb installations, s

ANN: Wing Python IDE 7.1.2 has been released

2019-10-09 Thread Wingware
Wing Python IDE version 7.1.2 has been released. It adds a How-To for using Wing with Docker, allows disabling code warnings from the tooltip displayed over the editor, adds support for macOS 10.15 (Catalina), supports code folding in JSON files, adds optional word wrapping for output in the

ANN: Wing Python IDE 7.1.1

2019-09-09 Thread Wingware
Wing Python IDE version 7.1.1 has been released. This release avoids slowing and dropping of remote development connections, fixes showing Pandas DataFrame and Series values, makes OS Commands work on remote hosts with Python 3, inspects remote extension modules with non-ascii characters in

ANN: Wing Python IDE 7.1 released

2019-07-26 Thread Wingware
Wing 7.1 is a new release of Wingware's Python IDE product line. This release adds support for Python 3.8, warns about unused symbols, improves code warnings configuration, adds new icons for the auto-completer, project, and source browser, supports Dark Mode on OS X, and makes

ANN: Wing Python IDE 7.0.4 Released

2019-07-12 Thread Wingware
Wing Python IDE 7.0.4 has been released. Some of the highlights of this release include: Fix debugging notebooks with newer Jupyter versions Fix setting up a Django project with the default Python Executable Don't lose retained Debug I/O buffers after 60 seconds Avoid se

ANN: Wing Python IDE 7.0.2 released

2019-05-09 Thread Wingware
Wing 7.0.2 has been released. This is a minor release that includes the following fixes and improvements: * Add options to exclude Pylint warning messages by category (error, warning, info) * Fix several problems with code warnings * Fix several code analysis issues * Don't incorrectly cl

ANN: Wing Python IDE 7 is Now Available

2019-04-09 Thread Wingware
Wing Python IDE 7.0 - April 8, 2019 Wing 7 introduces an improved code warnings and code quality inspection system that includes built-in error detection and tight integration with pylint, pep8, and mypy. This release also adds a new data frame and array viewer, a MATLAB keyboard

ANN: Wing Python IDE 6.1.5 released

2019-03-05 Thread Wingware
Wing Python IDE version 6.1.5 is now available for download <https://wingware.com/downloads>. Changes in 6.1.5 * Improves code intelligence for extension modules on remote hosts <http://wingware.com/doc/proj/remote-hosts> * Adds a debug status icon to the debug process s

ANN: Wing Python IDE 6.1.3 released

2019-01-14 Thread Wingware
Links Release notice: https://wingware.com/news/2019-01-11 Downloads and Free Trial: https://wingware.com/downloads Buy: https://wingware.com/store/purchase Upgrade: https://wingware.com/store/upgrade Questions? Don't hesitate to email us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: Wing Python IDE 6.1.2 released

2018-11-09 Thread Wingware
al: https://wingware.com/downloads Buy: https://wingware.com/store/purchase Upgrade: https://wingware.com/store/upgrade Questions? Don't hesitate to email us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: Wing Python IDE 6.1.1 released

2018-09-21 Thread Wingware
: https://wingware.com/store/purchase Upgrade: https://wingware.com/store/upgrade Questions? Don't hesitate to email us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: Wing Python IDE version 6.1 released

2018-07-31 Thread Wingware
ware.com/news/2018-07-30 Downloads and Free Trial: https://wingware.com/downloads Buy: https://wingware.com/store/purchase Upgrade: https://wingware.com/store/upgrade Questions? Don't hesitate to email us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intel

ANN: Wing Python IDE 6.0.12 released

2018-05-17 Thread Wingware
e.com/store/purchase Upgrade: https://wingware.com/store/upgrade Questions? Don't hesitate to email us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: Wing Python IDE v. 6.0.9 released

2017-12-13 Thread Wingware
mail us at supp...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: Wing Python IDE v. 6.0.8 released

2017-11-07 Thread Wingware
...@wingware.com. Thanks, -- Stephan Deibel Wingware | Python IDE The Intelligent Development Environment for Python Programmers wingware.com -- https://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   5   6   7   8   9   10   >