[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Westley Martínez
Westley Martínez aniko...@gmail.com added the comment: I think a better technique would be to expand FILENAME_CHARS to include more characters. -- nosy: +anikom15 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14937

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Westley Martínez
Westley Martínez aniko...@gmail.com added the comment: Also, shouldn't the space character ' ' be included? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14937 ___

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Westley Martínez
Westley Martínez aniko...@gmail.com added the comment: Ahh okay, sorry for the triple post, I have an idea. On UNIX, the function should accept any character except: \0 /, and on Windows should accept any character except: \0 \ / : * ?| On classic Macintosh, : is invalid. However, I do

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: I agree that chr(32) should be included in FILENAME_CHARS. The algorithm for backward searching checks that each character is contained in FILENAME_CHARS. I'm concerned about running time, as expanding FILENAME_CHARS to include all valid

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Westley, I was responding to msg162168 and didn't see msg162169 yet. PEP11 mentions MacOS 9 support was removed in 2.4. Is : still invalid in OSX? I'll need to think about the approach of using an INVALID_CHARS list. It looks like it might

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Francisco Gracia
Francisco Gracia fgragu...@gmail.com added the comment: Is there any necessity at all for the IDLE to test the validity of the filenames? I mean: the file specification is provided by the underlying operating system, so by definition it has to be taken as valid. Testing for its validity is

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-02 Thread Westley Martínez
Westley Martínez aniko...@gmail.com added the comment: You're right. The code shouldn't *have* to check if the name is valid. It should just accept that the name is already valid. This would simplify things. Here's the problem: the code needs to find the index of where the string with the

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Francisco Gracia
severity: normal status: open title: IDLE's deficiency in the completion of file names (Python 32, Windows XP) type: behavior versions: Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14937

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Would you like to contribute a patch? -- nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14937 ___

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Francisco Gracia
Francisco Gracia fgragu...@gmail.com added the comment: I would be delighted, but unfortunately I am a very poor programmer and do not have the slightest idea of how all this works. -- ___ Python tracker rep...@bugs.python.org

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: The open_completions method in AutoComplete.py is where the bug exists. When mode == COMPLETE_FILES, the code searches for characters within the ASCII set, plus a few others contained in FILENAME_CHARS. Attached is a patch to also include

[issue14941] Using Python on Windows end user docs are out of date

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan ncogh...@gmail.com: The following docs should be updated based on the automatic PATH manipulation in the updated installer: http://docs.python.org/dev/using/windows.html#using-python-on-windows The section on script execution should also mention the -m switch

[issue14941] Using Python on Windows end user docs are out of date

2012-05-28 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: #14668 -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14941 ___

[issue14941] Using Python on Windows end user docs are out of date

2012-05-28 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- superseder: - Document the path option in the Windows installer ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14941

[issue14929] IDLE crashes on *Edit / Find in files ...* command (Python 3.2, Windows XP)

2012-05-27 Thread Francisco Gracia
moving list of messages shows in this window, but the final result is the same: IDLE disappears immediately. -- components: IDLE messages: 161727 nosy: fgracia priority: normal severity: normal status: open title: IDLE crashes on *Edit / Find in files ...* command (Python 3.2, Windows

[issue4566] 2.6.1 breaks many applications that embed Python on Windows

2012-05-21 Thread Shy
Shy shoo...@gmail.com added the comment: For some reason this patch is disabled with #ifdefs when Py_ENABLE_SHARED is not defined. I'm compiling python as a static lib and have unresolved externals for both these functions: _Py_ActivateActCtx, _Py_DeactivateActCtx -- nosy: +shooshx

Strange Behavior on Python 3 Windows Command Line

2012-02-13 Thread waylan
When I try running any Python Script on the command line with Python 3.2 I get this weird behavior. The cursor dances around the command line window and nothing ever happens. Pressing Ctr+C does nothing. When I close the window (mouse click on X in top right corner), an error dialog appears asking

Re: Strange Behavior on Python 3 Windows Command Line

2012-02-13 Thread Arnaud Delobelle
On 13 February 2012 19:50, waylan way...@gmail.com wrote: When I try running any Python Script on the command line with Python 3.2 I get this weird behavior. The cursor dances around the command line window and nothing ever happens. Pressing Ctr+C does nothing. When I close the window (mouse

Re: Strange Behavior on Python 3 Windows Command Line

2012-02-13 Thread Waylan Limberg
On Mon, Feb 13, 2012 at 3:16 PM, Arnaud Delobelle arno...@gmail.com wrote: Strangely it was working fine the other day. Then while debugging a script it suddenly started do this and now does this for every script How were you debugging? I think I may have been attempting to use pipes to

[issue4709] Mingw-w64 and python on windows x64

2012-02-06 Thread Ralf Schmitt
Ralf Schmitt python-b...@systemexit.de added the comment: Marting, this issue is about building python extensions with mingw-w64 not about building python itself. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709

[issue4709] Mingw-w64 and python on windows x64

2012-02-06 Thread John Pye
John Pye j...@curioussymbols.com added the comment: Martin, Ralf is right and my as previously linked is about building a python extension. I should have been more explicit about that. FWIW I found that the configure scripts on MinGW-w64 generally work fine if you add a

[issue4709] Mingw-w64 and python on windows x64

2012-02-06 Thread Ralf Schmitt
Ralf Schmitt python-b...@systemexit.de added the comment: There's no need to discuss or even run configure scripts. Martin, please reread the OPs original message. It's easy enough to reason about the issue instead of trying to reproduce it. -- ___

[issue4709] Mingw-w64 and python on windows x64

2012-02-05 Thread John Pye
John Pye j...@curioussymbols.com added the comment: Hi Martin I have documented a build process for a Python package on MinGW-w64, including a requirement that this patch be applied. You might want to revisit it, given that your attempt to reproduce this bug earlier was unsuccessful.

[issue4709] Mingw-w64 and python on windows x64

2012-02-05 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: John: in the current versions of the toolchain, Python's configure fails for me. I follow steps 1..3 of Steps to date. Then running ./configure fails saying that it does not work. I then tried alternatively these three approaches: 1. set

Re: Install Python on Windows without Start Menu icons?

2011-12-05 Thread Wolfgang Strobl
Pedro Henrique G. Souto pedro.h.so...@gmail.com: On 02/12/2011 16:34, snorble wrote: Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push out Python to all of my office workstations, but I'd like

Re: Install Python on Windows without Start Menu icons?

2011-12-05 Thread Lie Ryan
On 12/05/2011 07:01 PM, Wolfgang Strobl wrote: Pedro Henrique G. Soutopedro.h.so...@gmail.com: On 02/12/2011 16:34, snorble wrote: Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push out Python to all

Re: Install Python on Windows without Start Menu icons?

2011-12-05 Thread Brian Curtin
On Fri, Dec 2, 2011 at 12:34, snorble snor...@hotmail.com wrote: Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push out Python to all of my office workstations, but I'd like for it to be relatively

Re: Install Python on Windows without Start Menu icons?

2011-12-05 Thread snorble
On Dec 5, 2:01 am, Wolfgang Strobl ne...@mystrobl.de wrote: Pedro Henrique G. Souto pedro.h.so...@gmail.com: On 02/12/2011 16:34, snorble wrote: Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push

Re: Install Python on Windows without Start Menu icons?

2011-12-03 Thread Pedro Henrique G. Souto
On 02/12/2011 16:34, snorble wrote: Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push out Python to all of my office workstations, but I'd like for it to be relatively silent from the user's point of view

Install Python on Windows without Start Menu icons?

2011-12-02 Thread snorble
Is it possible to automate the Python installation on Windows using the MSI file so it does not add a Start Menu folder? I would like to push out Python to all of my office workstations, but I'd like for it to be relatively silent from the user's point of view. -- http://mail.python.org/mailman

Re: When I use Python under Windows. I found some file handles are not closed,

2011-11-01 Thread Gabriel Genellina
En Mon, 31 Oct 2011 12:57:15 -0300, 罗勇刚(Yonggang Luo) luoyonggang-re5jqeeqqe8avxtiumw...@public.gmane.org escribió: How did detecting where those handlers are created to tracing it and close it. Mainly because I was using C binding library(subvertpy) and file is not closed. A better

[issue13106] Incorrect pool.py distributed with Python 2.7 windows 32bit

2011-10-05 Thread Aaron Staley
Aaron Staley usaa...@gmail.com added the comment: Never mind; looks like this functionality was moved to handle_workers. I had inadvertently been testing under a modified pool.py. Sorry for the inconvenience! -- resolution: - invalid status: open - closed

[issue13106] Incorrect pool.py distributed with Python 2.7 windows 32bit

2011-10-05 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: test needed - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13106 ___

[issue13106] Incorrect pool.py distributed with Python 2.7 windows 32bit

2011-10-04 Thread Aaron Staley
New submission from Aaron Staley usaa...@gmail.com: The multiprocess/pool.py distributed with the Python 2.7.2 Windows Installer is different from the one distributed with the 64 bit windows installer or source tarball - and is buggy. Specifically, see Pool._terminate_pool: def

[issue13106] Incorrect pool.py distributed with Python 2.7 windows 32bit

2011-10-04 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +jnoller stage: - test needed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13106 ___

Re: [Python] Re: Windows service in production?

2011-08-18 Thread Chris Gonnerman
Chiming in late here, but I've been running a very simple Python service for some time now on a number of computers. It's my Raw Print Server, available at http://newcenturycomputers.net/projects/rawprintserver.html, and I have instructions on the page for installing the Windows service

Re: [Python] Re: Windows service in production?

2011-08-18 Thread Chris Gonnerman
Chiming in late here, but I've been running a very simple Python service for some time now on a number of computers. It's my Raw Print Server, available at http://newcenturycomputers.net/projects/rawprintserver.html, and I have instructions on the page for installing the Windows service

[issue4709] Mingw-w64 and python on windows x64

2011-05-17 Thread Ralf Schmitt
Ralf Schmitt sch...@gmail.com added the comment: I'm also using this patch successfully (together with http://tdm-gcc.tdragon.net/). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709

[issue4709] Mingw-w64 and python on windows x64

2011-05-16 Thread René Schümann
Changes by René Schümann whitet...@gmail.com: -- nosy: +WhiteTiger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___ Python-bugs-list

[issue4709] Mingw-w64 and python on windows x64

2011-05-10 Thread Ruben Van Boxem
Ruben Van Boxem vanboxem.ru...@gmail.com added the comment: Has anyone looked at this? I'm trying to build gdb with Python enabled with mingw-w64 (Python 2.7.1 with manually created import libraries), but have to manually define MS_WIN64 in the CFLAGS. The patch only does what's right (i.e.

multiple Python 2.7 Windows installations

2011-04-19 Thread Eric Frederich
Hello, I am trying to get an installer built with distutils to recognize multiple installations. The installer currently finds my installation at C:\Python27 I have a custom Python27 built myself with Visual Studio sitting somewhere else, say C:\MyPython27. I looked at PC/bdist_wininst/install.c

Re: multiple Python 2.7 Windows installations

2011-04-19 Thread Martin v. Loewis
I tried to create another 2.7 key but regedit wouldn't let me. So, if I can only have one 2.7 key, it would seem that the routine GetPythonVersions will only ever get 1 version of 2.7. Does this mean that it is unsupported to have more than one Python 2.7 installation on Windows? Exactly so

Re: multiple Python 2.7 Windows installations

2011-04-19 Thread Mark Hammond
On 20/04/2011 12:40 AM, Eric Frederich wrote: Hello, I am trying to get an installer built with distutils to recognize multiple installations. The installer currently finds my installation at C:\Python27 I have a custom Python27 built myself with Visual Studio sitting somewhere else, say

[issue4709] Mingw-w64 and python on windows x64

2011-04-03 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___

[issue4709] Mingw-w64 and python on windows x64

2011-04-02 Thread cournapeau david
cournapeau david courn...@gmail.com added the comment: Hi Martin, It was nice meeting you at Pycon. I finally took the time to set up a windows 64 bits environment, and here are the exact steps I needed to do to reproduce the issue, and fix it by hand: - Start fresh from windows 7 64 bits

[issue4566] 2.6.1 breaks many applications that embed Python on Windows

2011-02-16 Thread Ralf Schmitt
Changes by Ralf Schmitt sch...@gmail.com: -- nosy: +schmir ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4566 ___ ___ Python-bugs-list mailing

[issue4709] Mingw-w64 and python on windows x64

2011-02-15 Thread Ralf Schmitt
Changes by Ralf Schmitt sch...@gmail.com: -- nosy: +schmir ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___ Python-bugs-list mailing

[issue4709] Mingw-w64 and python on windows x64

2011-02-12 Thread Christoph Gohlke
Changes by Christoph Gohlke cgoh...@uci.edu: -- nosy: +cgohlke ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___ Python-bugs-list mailing

[issue4709] Mingw-w64 and python on windows x64

2011-02-10 Thread Scott Tsai
Changes by Scott Tsai scottt...@gmail.com: -- nosy: +scott.tsai ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___ Python-bugs-list

[issue4709] Mingw-w64 and python on windows x64

2010-09-20 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___

Python CGI windows

2010-08-13 Thread Srikanth N
Dear All, I Have certain clarification in python CGI. I use Python IDLE *1. How do we execute CGI Scripts in Windows? 2. How do i configure the Server?(If i use WAMP,XAMPP) 3. Is mod_python required for python cgi? * Someone Please revert back to me with the solution for the same.I would be

Re: Python CGI windows

2010-08-13 Thread Thomas Jollans
On 2010-08-13 12:40, Srikanth N wrote: *1. How do we execute CGI Scripts in Windows? * You'll need a web server. *2. How do i configure the Server?(If i use WAMP,XAMPP) * For CGI, you just need your server configured for CGI, nothing Python-specific. It would surprise me if XAMPP didn't set

Re: Python CGI windows

2010-08-13 Thread Thomas Jollans
On 2010-08-13 12:40, Srikanth N wrote: *2. How do i configure the Server?(If i use WAMP,XAMPP) * Sorry, I forgot to link you to http://www.editrocket.com/articles/python_apache_windows.html Hope this helps. -- http://mail.python.org/mailman/listinfo/python-list

[issue4804] Python on Windows disables all C runtime library assertions

2010-07-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closed as stated committed r69495. -- nosy: +BreamoreBoy resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4804

[issue4804] Python on Windows disables all C runtime library assertions

2010-06-26 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Why is this issue still open? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4804 ___

[issue4804] Python on Windows disables all C runtime library assertions

2010-06-25 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.5, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4804 ___

How to print via python on windows

2010-06-14 Thread loial
What is the easiest way to send a text file to a networked printer from a python script running on windows? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to print via python on windows

2010-06-14 Thread Tim Golden
On 14/06/2010 16:31, loial wrote: What is the easiest way to send a text file to a networked printer from a python script running on windows? http://timgolden.me.uk/python/win32_how_do_i/print.html TJG -- http://mail.python.org/mailman/listinfo/python-list

Re: How to print via python on windows

2010-06-14 Thread rantingrick
On Jun 14, 10:55 am, Tim Golden m...@timgolden.me.uk wrote: On 14/06/2010 16:31, loial wrote: What is the easiest way to send a text file to a networked printer from a python script running on windows?    http://timgolden.me.uk/python/win32_how_do_i/print.html Hello Tim, Thanks

Re: How to print via python on windows

2010-06-14 Thread Tim Golden
On 14/06/2010 7:29 PM, rantingrick wrote: On Jun 14, 10:55 am, Tim Goldenm...@timgolden.me.uk wrote: On 14/06/2010 16:31, loial wrote: What is the easiest way to send a text file to a networked printer from a python script running on windows? http://timgolden.me.uk/python

getting local area connection information through python in windows

2010-05-22 Thread moijes12
Hi I need to get the details of Local Area connection information(network interface) like packets sent,packets recieved,duration etc. I have to do this in Windows using python. I tried looking under the socket module and also googling,but did not find anything that I could use for windows,though

Re: getting local area connection information through python in windows

2010-05-22 Thread sturlamolden
On 22 Mai, 09:38, moijes12 moije...@gmail.com wrote: I need to get the details of Local Area connection information(network interface) like packets sent,packets recieved,duration etc. I have to do this in Windows using python. import subprocess as sp p = sp.Popen(netstat -s, shell=False

Re: getting local area connection information through python in windows

2010-05-22 Thread moijes12
On May 22, 1:12 pm, sturlamolden stu...@molden.no wrote: On 22 Mai, 09:38, moijes12 moije...@gmail.com wrote: I need to get the details of Local Area connection information(network interface) like packets sent,packets recieved,duration etc. I have to do this in Windows using python

[issue8459] buildbot: test_select failure (test_returned_list_identity) on Python 2.6, Windows

2010-04-20 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Fixed in r80281. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8459 ___

[issue8459] buildbot: test_select failure on Python 2.6, Windows

2010-04-19 Thread STINNER Victor
failure on Python 2.6, Windows versions: Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8459 ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue8459] buildbot: test_select failure (test_returned_list_identity) on Python 2.6, Windows

2010-04-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: The fail looks to be related to #8329 (r79867:trunk, r79868:py3k, r79869:2.6, r79870:3.1). -- title: buildbot: test_select failure on Python 2.6, Windows - buildbot: test_select failure (test_returned_list_identity

[issue8459] buildbot: test_select failure (test_returned_list_identity) on Python 2.6, Windows

2010-04-19 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8459 ___ ___ Python-bugs-list

[issue8146] Latest version of Python for windows 98

2010-03-15 Thread anatoly techtonik
anymore. -- assignee: georg.brandl components: Documentation messages: 101096 nosy: georg.brandl, techtonik severity: normal status: open title: Latest version of Python for windows 98 ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue8146] Latest version of Python for windows 98

2010-03-15 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: You'll want to look at http://wiki.python.org/moin/PythonWebsiteCreatingNewTickets Win 2000 is currently supported, although there have been rumblings of beginning to drop that support. The info exists in PEP-11 for now, but I agree that a

Re: Best practice way to detect internet connectivity under Python 2.6/Windows

2010-03-08 Thread Tim Golden
On 08/03/2010 02:41, pyt...@bdurham.com wrote: Is the best pratice way to detect internet connectivity under Windows (using Python 2.6) simply to attempt to access a known internet website using urllib or urlib2 wrapped in a try/except construct? Well, in theory you could use the Internet API

Best practice way to detect internet connectivity under Python 2.6/Windows

2010-03-07 Thread python
Is the best pratice way to detect internet connectivity under Windows (using Python 2.6) simply to attempt to access a known internet website using urllib or urlib2 wrapped in a try/except construct? Thank you, Malcolm -- http://mail.python.org/mailman/listinfo/python-list

Re: sshd in python for windows 7

2010-02-07 Thread News123
Hi Jerry, Jerry Hill wrote: On Sat, Feb 6, 2010 at 7:07 PM, News123 news...@free.fr wrote: Hi, I wondered which modules would be best to perform following task: A user uses a standard ssh (e.g. putty or openssh) client and performs an ssh to a windows host The windows host would run a

Re: sshd in python for windows 7

2010-02-07 Thread News123
Hi Jerry, Jerry Hill wrote: On Sat, Feb 6, 2010 at 7:07 PM, News123 news...@free.fr wrote: Hi, I wondered which modules would be best to perform following task: A user uses a standard ssh (e.g. putty or openssh) client and performs an ssh to a windows host The windows host would run a

Re: sshd in python for windows 7

2010-02-07 Thread News123
Hi Jerry, Jerry Hill wrote: On Sat, Feb 6, 2010 at 7:07 PM, News123 news...@free.fr wrote: Hi, I wondered which modules would be best to perform following task: A user uses a standard ssh (e.g. putty or openssh) client and performs an ssh to a windows host The windows host would run a

sshd in python for windows 7

2010-02-06 Thread News123
access to stdin/stdout/stderr of another python script. Another option would of course be to install a non python sshd for windows. The only ssh server for windows, that I know is however a little heavy as it is openssh under cygwin (and I only used it on XP hosts.) I'm still not sure, whether

Re: sshd in python for windows 7

2010-02-06 Thread Jerry Hill
On Sat, Feb 6, 2010 at 7:07 PM, News123 news...@free.fr wrote: Hi, I wondered which modules would be best to perform following task: A user uses a standard ssh (e.g. putty or openssh) client and performs an ssh to a windows host The windows host would run a python script acting as ssh

[issue4709] Mingw-w64 and python on windows x64

2010-01-31 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: I have now tried reproducing the problem, and still failed to. I downloaded, from http://sourceforge.net/projects/mingw-w64/files/, the distribution mingw-w32-bin_i686-mingw_20100123_sezero.zip. With this, I get

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-02 Thread Rhodri James
On Mon, 02 Nov 2009 00:49:50 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty weird thing to

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-02 Thread Alf P. Steinbach
* Rhodri James: On Mon, 02 Nov 2009 00:49:50 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Rhodri James
On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach al...@start.no wrote: with the best knowledge of the program's environment, is unable to handle (such as delete) files or folders with paths

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Alf P. Steinbach
* Rhodri James: On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach al...@start.no wrote: with the best knowledge of the program's environment, is unable to handle (such as delete) files or folders

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Rhodri James
On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Alf P. Steinbach
* Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach al...@start.no wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty weird thing to comment on. And as far as I can see the comment doesn't make sense except as

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Thad Smith
Richard Heathfield wrote: ... so I cheerfully installed it on the user's desktop machine (Windows ME, would you believe), and then set about configuring the reader, when... ouch! No PDF reader on the machine. Not even an ancient Adobe version. Oh dear. Program suddenly rendered completely

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Pascal J. Bourguignon
Thad Smith thadsm...@acm.org writes: Richard Heathfield wrote: ... so I cheerfully installed it on the user's desktop machine (Windows ME, would you believe), and then set about configuring the reader, when... ouch! No PDF reader on the machine. Not even an ancient Adobe version. Oh dear.

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread bartc
Alf P. Steinbach al...@start.no wrote in message news:hcdlsp$9a...@news.eternal-september.org... * bartc: Alf P. Steinbach al...@start.no wrote in message news:hc8pn3$dd...@news.eternal-september.org... [Cross-posted comp.programming and comp.lang.python] You use the highly

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Bruno Desthuilliers
Alf P. Steinbach a écrit : (snip) Microsoft's own Windows Explorer, the main GUI shell for Windows, which presumably was made by the best programmers available Mouarf !!! +1 JOFY (= Joke Of The Year) -- http://mail.python.org/mailman/listinfo/python-list

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Xavier Ho
Alf, I kindly urge you to re-read bartc's comments. He does have a good point and you seem to be avoiding direct answers. On Fri, Oct 30, 2009 at 1:17 PM, Alf P. Steinbach al...@start.no wrote: * bartc: You say elsewhere that you're not specifically teaching Python, but the text is full of

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Xavier Ho
On Fri, Oct 30, 2009 at 1:48 PM, Alf P. Steinbach al...@start.no wrote: Does that mean that 'print' is still subject to change as of 3.1.1? Funny that. They removed reduce() when Python moved from 2.6.x to 3.0. They even removed __cmp__(). Makes me a sad panda. Is print() subject to change as

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* bartc: python.org seems to be the main site. Google python download and that is the first hit. Their windows download seems to be 13MB against the 32MB of activestate, and the IDE provided seems more advanced that the 'console window' you have in your tutorial. I'm just asking why your

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* Alf P. Steinbach: * bartc: python.org seems to be the main site. Google python download and that is the first hit. Their windows download seems to be 13MB against the 32MB of activestate, and the IDE provided seems more advanced that the 'console window' you have in your tutorial. I'm

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Dann Corbit
In article xfwdnvpdb-3mkhtxnz2dnuvz8nvi4...@bt.com, r...@see.sig.invalid says... In mpg.255246264331509a989...@news.eternal-september.org, Dann Corbit wrote: snip You can read PDF with the ghostscript stuff or the free Adobe stuff. Agreed. But why should you have to? As opposed

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* bartc: Python has a lot of baggage which is OK if that's what's going to be used, but otherwise is unnecessary confusion: where to put the program code (typed in live or in a file, or some combination); whether to call the file .py or .pyw; the difference between console and graphical

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Richard Heathfield
In mpg.2554d283970cde989...@news.eternal-september.org, Dann Corbit wrote: In article xfwdnvpdb-3mkhtxnz2dnuvz8nvi4...@bt.com, r...@see.sig.invalid says... In mpg.255246264331509a989...@news.eternal-september.org, Dann Corbit wrote: snip You can read PDF with the ghostscript stuff

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Mensanator
On Oct 30, 2:07 pm, Alf P. Steinbach al...@start.no wrote: * bartc: Python has a lot of baggage which is OK if that's what's going to be used, but otherwise is unnecessary confusion: where to put the program code (typed in live or in a file, or some combination); whether to call the

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* Mensanator: On Oct 30, 2:07 pm, Alf P. Steinbach al...@start.no wrote: * bartc: Python has a lot of baggage which is OK if that's what's going to be used, but otherwise is unnecessary confusion: where to put the program code (typed in live or in a file, or some combination); whether to

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Richard Heathfield
In hcfj10$1o...@news.eternal-september.org, Alf P. Steinbach wrote: snip I'm very very happy that most comments about perceived defects in the text and in my responses here, have only disagreements over terminology. I had expected a slew of errors being pointed out, since I'm new to Python.

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread alex23
Alf P. Steinbach al...@start.no wrote: And no, I didn't do any research on that. If it mattered more (e.g. appearing as statement in the text) I'd have done that. The nice thing about Usenet is that people rush in to correct things. ;-) url:http://xkcd.com/386/ Unfortunately, the idiocy

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* alex23: Alf P. Steinbach al...@start.no wrote: And no, I didn't do any research on that. If it mattered more (e.g. appearing as statement in the text) I'd have done that. The nice thing about Usenet is that people rush in to correct things. ;-) url:http://xkcd.com/386/ Unfortunately, the

Re: Bug(s) in Python 3.1.1 Windows installation

2009-10-29 Thread Gabriel Genellina
En Wed, 28 Oct 2009 21:06:03 -0300, Alf P. Steinbach al...@start.no escribió: The installer did manage to do the rest of that part correctly: file associations and PATHEXT variable. The Python installer from python.org does NOT add .py and .pyw to PATHEXT; the ActivePython one does.

<    2   3   4   5   6   7   8   9   10   11   >