[Newby] Problem with compilation.

2004-12-09 Thread rootshell
Hi folks! Can't compile my file due to some problems with crypt module. My platform is WinXP: First I launch my Python Shell, Than I open the *.py file, Next I press F5 to 'run module' The message is:ImportError: No module named crypt Few lines of code for example: ... import posix import

Re: [Newby] Problem with compilation.

2004-12-09 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: Can't compile my file due to some problems with crypt module. My platform is WinXP: http://docs.python.org/lib/module-crypt.html Section 8: Unix Specific Services 8.4 crypt -- Function to check Unix passwords Availability: Unix. here's a portable crypt

Re: [Newby] Problem with compilation.

2004-12-09 Thread rootshell
Can't compile my file due to some problems with crypt module. My platform is WinXP: http://docs.python.org/lib/module-crypt.html Section 8: Unix Specific Services 8.4 crypt -- Function to check Unix passwords Availability: Unix. here's a portable crypt implementation:

Re: [Newby] Problem with compilation.

2004-12-09 Thread j vickroy
The Python modules documentation indicates crypt is only available on Unix platforms. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi folks! Can't compile my file due to some problems with crypt module. My platform is WinXP: First I launch my Python Shell, Than I open the *.py

Re: [Newby] Problem with compilation.

2004-12-09 Thread Mike C. Fletcher
There is a work-alike cross-platform fcrypt.py module which can be used to replace crypt on non-unix platforms. Google to find it. HTH, Mike j vickroy wrote: The Python modules documentation indicates crypt is only available on Unix platforms. original problem with lib requiring crypt

Re: [Newby] Problem with compilation.

2004-12-09 Thread Fredrik Lundh
Mike C. Fletcher wrote: There is a work-alike cross-platform fcrypt.py module which can be used to replace crypt on non-unix platforms. Google to find it. (or read earlier posts to this thread) /F -- http://mail.python.org/mailman/listinfo/python-list