[issue27401] Wrong FTP links in 5.3.2 installer

2016-06-27 Thread Jarod Brennfleck
New submission from Jarod Brennfleck: So far, the only installers tested is the Python 5.3.2 x86 and x86_64 installers. When selecting customise install, the installer is unable to gather the files required, because the installer is looking for them in: https://www.python.org/ftp/python/3.5.2

[issue20166] window x64 c-extensions not works on python3.4.0b2

2014-01-07 Thread jarod
New submission from jarod: After installing python3.4.0b2.amd64 and rebuild modules, most of them stoped works. List of modules is [psutil, ujson]. Exception occurs on importing module: import error: dynamic module does not define init function PyInit_module_name and I found solution

[issue2201] Documentation Section 4.4

2008-02-28 Thread Jarod
New submission from Jarod: Section 4.4 of the tutorial gives example code: for n in range(2, 10): ... for x in range(2, n): ... if n % x == 0: ... print n, 'equals', x, '*', n/x ... break ... else: ... # loop fell through without finding

[issue2201] Documentation Section 4.4

2008-02-28 Thread Jarod
Jarod added the comment: I made a type in that line, but when the typo isn't there I get the same thing. It turns out that it was an error from running a slightly older version of the dev kit. Now that I have updated the dev kit it runs, but I end up with the following as an output: 3

[issue2201] Documentation Section 4.4

2008-02-28 Thread Jarod
Jarod added the comment: @Georg: you were correct, the indentation was incorrect, I suggest that there be some additional notation be added to code examples in the documentation showing how many tabs there are, to make for an easier read and minimize on errors