[issue3134] shutil references undefined WindowsError symbol

2008-08-11 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Fixed in r65644. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3134] shutil references undefined WindowsError symbol

2008-08-11 Thread Raghuram Devarakonda
Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment: > Patch works under Windows. Thanks. Can you please commit the change? ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3134] shutil references undefined WindowsError symbol

2008-08-11 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Patch works under Windows. -- assignee: -> pitrou priority: -> high versions: +Python 2.6, Python 3.0 -Python 2.5 ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3134] shutil references undefined WindowsError symbol

2008-08-09 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Raghuram, your patch looks good to me. I'll try to test it under Windows soon. -- nosy: +pitrou ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3134] shutil references undefined WindowsError symbol

2008-06-19 Thread Raghuram Devarakonda
Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment: I submitted a patch at http://codereview.appspot.com/2384. Please take a look. ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3134] shutil references undefined WindowsError symbol

2008-06-18 Thread Raghuram Devarakonda
Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment: This is same as #2549 which also reported the same problem. In fact, the problem was originally found in #1545. As I said there, the proposed patch has a very small problem. Can you please take a look? -- nosy: +draghuram _

[issue3134] shutil references undefined WindowsError symbol

2008-06-18 Thread David Vitek
New submission from David Vitek <[EMAIL PROTECTED]>: If copystat fails in copytree on a non-windows box, you will get: NameError: global name 'WindowsError' is not defined: ... except WindowsError: -- components: Library (Lib) files: p.patch keywords: patch messages: 68373 nosy: dvi