[issue6715] xz compressor support

2011-01-29 Thread Nadeem Vawda
Changes by Nadeem Vawda : -- nosy: +nvawda ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue10961] Pydoc touchups in new browser for 3.2

2011-01-29 Thread Ron Adam
Ron Adam added the comment: New and hopefully last patch... pydoc_misc_fix_e.diff I removed the .html in the ?key= links as Eric suggested. I checked the navbar float behavior on browsershots.org. Multiple versions of MSIE, firefox, opera, chrome, and safari were tested on Ubuntu and Windows

[issue9124] Mailbox module should use binary I/O, not text I/O

2011-01-29 Thread R. David Murray
R. David Murray added the comment: Committed (with RM approval on IRC) in r88252. Note that this does not necessarily solve the performance problem. A new issue should be opened for that if it still exist. -- resolution: -> fixed stage: commit review -> committed/rejected status: op

[issue9527] Add aware local time support to datetime module

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Sat, Jan 29, 2011 at 11:56 PM, Raymond Hettinger wrote: .. > Also, I question whether the proposed API is correct.  ISTM that any code > that sets the *dst* > parameter is guaranteed to be wrong (hardwiring-in a value that will change > every few mon

[issue9527] Add aware local time support to datetime module

2011-01-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: I think Tim and Guido had deliberately avoided local timezone awareness when they designed the module. Also, I question whether the proposed API is correct. ISTM that any code that sets the *dst* parameter is guaranteed to be wrong (hardwiring-in a value

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Brian Curtin
Brian Curtin added the comment: The following patch will fix it. Another example of why 'list' isn't a great name :) Index: Lib/idlelib/RemoteObjectBrowser.py === --- Lib/idlelib/RemoteObjectBrowser.py (revision 88248) +++ Lib/id

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Brian Curtin
Brian Curtin added the comment: I don't get a crash, but it certainly doesn't work. Once IDLE is open I type "raise TypeError", then open the stack viewer as you did. Here's what I'm seeing: [WINSEVEN] 2011-01-29 21:05:30.18 c:\Users\brian >c:\python31\python.exe -m idlelib.idle *** Internal

[issue11070] test_capi crashes and fails

2011-01-29 Thread Brian Curtin
Changes by Brian Curtin : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11070] test_capi crashes and fails

2011-01-29 Thread Brian Curtin
Brian Curtin added the comment: Duplicate of #9116. -- nosy: +brian.curtin resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> test_capi.test_no_FatalError_infinite_loop crash on Windows versions: +Python 3.1 -Python 3.2 __

[issue11070] test_capi crashes and fails

2011-01-29 Thread rmtew
New submission from rmtew : OS: Windows 7 Compiler: Visual Studio 2008 Build: Win32 (Debug and Release) The main problem is observed in both debug and release builds, and even though the test effectively passes in both it also fails in release build. ** In a debug build I see the following:

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Yakov Blum
Yakov Blum added the comment: A few additional details: I'm also running Windows 7. Reproducing the crash is as simple as opening IDLE, typing, e.g., raise TypeError and clicking Debug > Stack Viewer -- ___ Python tracker

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Ned Deily
Ned Deily added the comment: According to the StackOverflow report, the crash occurs on Python 3.1.2 with IDLE 3.1.2 on Windows 7. -- components: +Windows nosy: +brian.curtin, kbk, ned.deily ___ Python tracker __

[issue11069] IDLE crashes when Stack Viewer opened

2011-01-29 Thread Yakov Blum
New submission from Yakov Blum : This problem was asked about on Stack Overflow, where there's some more information on it: http://stackoverflow.com/questions/4046021/python-idle-windows-pressing-stack-viewer-exits-all-idle-windows But I didn't see it listed as a bug here. I've also experienced

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: [just carrying over some info from issue 10939 that is related to this issue] Here is another manifestation of this issue, related to the local time assumption, but not to DST, per se: Here is the definition for Europe/London in the unix tz data: # Zone NAME

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: I like the idea of adding the decorator. New patch added. -- Added file: http://bugs.python.org/file20615/issue10941.diff ___ Python tracker ___

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2011-01-29 Thread Joe Peterson
Changes by Joe Peterson : Removed file: http://bugs.python.org/file20613/issue10941.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue11037] State of PEP 382 or How does distutils2 handle namespaces?

2011-01-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Martin, could you shed some light on the state of that PEP? It's implemented in a branch, and will likely be included in Python 3.3. -- title: Implementing PEP 382 -> State of PEP 382 or How does distutils2 handle namespaces? ___

[issue11054] OS X installer build script for 3.2 can no longer build with system Python on OS X 10.5

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Merged to 2.7 in r88248 (for 2.7.2). -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs

[issue10842] Update third-party libraries for OS X installer builds

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Merged to 2.7 in r88248 (for 2.7.2). -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs

[issue10845] test_multiprocessing failure under Windows

2011-01-29 Thread Nick Coghlan
Nick Coghlan added the comment: Committed for 3.2 in r88247. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Sat, Jan 29, 2011 at 4:45 PM, Joe Peterson wrote: .. > I have added code that sets the TZ to one that works, and then reverts the > temporary > TZ change after the test. > Your test will not restore TZ if it fails. This is not nice. To fix that, co

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-01-29 Thread Ned Deily
Changes by Ned Deily : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-01-29 Thread Ned Deily
Ned Deily added the comment: 7. Backported to 2.7 in r88243 (to appear in 2.7.2). -- priority: release blocker -> status: pending -> open ___ Python tracker ___ ___

[issue6628] IDLE freezes after encountering a syntax error

2011-01-29 Thread Ned Deily
Ned Deily added the comment: For the record: The problem was caused by a minor change in IDLE during the port of IDLE from 2.x to 3.x. It is fixed by the changes for Issue11053: r88234 (3.2rc2) and r88242 (planned for 3.1.4). -- assignee: ronaldoussoren -> ned.deily stage: -> commit

[issue9763] Crashes upon run after syntax error encountered in OSX 10.5.8

2011-01-29 Thread Ned Deily
Ned Deily added the comment: The problem was caused by a minor change in IDLE during the port of IDLE from 2.x to 3.x. It is fixed by the changes for Issue11053: r88234 (3.2rc2) and r88242 (planned for 3.1.4). -- resolution: -> duplicate stage: -> committed/rejected status: open ->

[issue11053] OS X IDLE 3 with Tk 8.4 appears to hang with syntax error

2011-01-29 Thread Ned Deily
Ned Deily added the comment: r88242 for 3.1 -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue11063] uuid.py module import has heavy side effects

2011-01-29 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +easy stage: -> needs patch versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Pyt

[issue1647654] No obvious and correct way to get the time zone offset

2011-01-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue1667546] Time zone-capable variant of time.localtime

2011-01-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue9527] Add aware local time support to datetime module

2011-01-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- dependencies: +No obvious and correct way to get the time zone offset ___ Python tracker ___ ___ P

[issue11068] Python 2.7.1 Idle traceback on OS X (10.6.6)

2011-01-29 Thread Ned Deily
Ned Deily added the comment: To uninstall, you can do the following: sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7 sudo rm -rf /Applications/"Python 2.7" If you've installed any site-packages, you would need to re-install them. -- _

[issue9527] Add aware local time support to datetime module

2011-01-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- dependencies: +Time zone-capable variant of time.localtime ___ Python tracker ___ ___ Python-bugs-

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Sat, Jan 29, 2011 at 5:48 PM, Joe Peterson wrote: .. > Note that this also exposes another problem with Time2Internaldate(), since > it uses > time.timezone/time.altzone, which are only valid for the current rules, not > old rules as in the London ca

[issue11068] Python 2.7.1 Idle traceback on OS X (10.6.6)

2011-01-29 Thread David Meier
David Meier added the comment: It doesn't matter what's in the file itself. By 'blank' I mean, literally, an empty file (i.e. `touch file.py`). You are correct that this was installed from the 10.6 specific 2.7.1, I will try to install from the other version. Is there a recommended uninstal

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: More info on the Europe/London "near the epoch" thing (there is no weirdness in the tz stuff - it's just issue 10941 causing the test to fail)... I looked at the sources for the tz data, and here is the definition for Europe/London: # Zone NAMEGMT

[issue11068] Python 2.7.1 Idle traceback on OS X (10.6.6)

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Does it matter what the contents of the file are, i.e. what do you mean by a "blank .py" file? I am not able to reproduce that problem. Be aware that, because of problems with the Apple-suppled Cocoa Tk 8.5 in OS X 10.6, the 2.7.1 IDLE from the 10.6-only 64-bit/3

[issue11068] Python 2.7.1 Idle traceback on OS X (10.6.6)

2011-01-29 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> ned.deily nosy: +ned.deily title: Python 2.7.1 Idle Segmentation Fault OS X (10.6.6) -> Python 2.7.1 Idle traceback on OS X (10.6.6) ___ Python tracker __

[issue11068] Python 2.7.1 Idle Segmentation Fault OS X (10.6.6)

2011-01-29 Thread David Meier
New submission from David Meier : After IDLE launches I select 'File->Open' browse to a blank .py file, when I select the particular file I get the segfault below... silverbox:~ user$ (idle&) silverbox:~ user$ Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Vers

[issue9124] Mailbox module should use binary I/O, not text I/O

2011-01-29 Thread R. David Murray
R. David Murray added the comment: Benjamin suggested using hasattr(message, 'buffer'), and that works great. The test revealed a bug in the patch, which is now fixed. All tests pass on windows. As far as I'm concerned the patch is ready to go. Other reviews would of course be welcome (and

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: Here is a new patch that adds a test to the tests committed for issue 10939. This new test case is needed to trigger the DST issue. This test is not timezone-dependent (in the sense that one does not have to have a specific timezone set for it to work), but it

[issue11067] Py_LIMITED_API breaks most PySomething_Check() functions

2011-01-29 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Interpreter Core -None nosy: +loewis type: -> behavior ___ Python tracker ___ ___ Python-

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: Alexander, looks like you hit a weirdness in the Europe/London timezone for dates before 31-Oct-1971, as if DST was in effect even in winter. And the fail of the test is caused by the same bug that causes issue 10941: the use of mktime to interpret the values

[issue11067] Py_LIMITED_API breaks most PySomething_Check() functions

2011-01-29 Thread Peter Eisentraut
New submission from Peter Eisentraut : When setting Py_LIMITED_API, functions such as PyUnicode_Check() can no longer be used. Example: #define Py_LIMITED_API #include void foo() { PyObject *o; PyUnicode_Check(o); } test.c: In function ‘foo’: test.c:9: error: dereferencing pointe

[issue11066] cgi.py proposals : sys.stdout encoding + rewriting of parsing functions

2011-01-29 Thread Pierre Quentel
New submission from Pierre Quentel : Python 3.2rc1 introduced a new version of cgi.py that handles correctly file uploads In this version, the FieldStorage constructor receives an argument "encoding" which is the encoding used by the document holding the submitted form On the CGI script side,

[issue10911] cgi: add more tests

2011-01-29 Thread Pierre Quentel
Pierre Quentel added the comment: Here is the diff file for test_cgi.py I added a test for a multipart/form-data form with non ASCII data to test the "encoding" parameter of FieldStorage -- keywords: +patch Added file: http://bugs.python.org/file20611/test_cgi.diff ___

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Some systems don't like times too close to epoch. Fixed in revision 88239. -- ___ Python tracker ___ ___

[issue11045] shutil._make_tarball

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Fixed for 3.2rc2 in r88240. Would it be right to call the internal function in the test? -- priority: high -> normal status: pending -> open ___ Python tracker

[issue11045] shutil._make_tarball

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Indeed, I tried writing a small test to go into the faulty code path, but without calling the private function directly it’s not trivial. I’ll apply the minimal change shortly if there is no opposition from Georg. -- assignee: tarek -> eric.araujo status

[issue10639] reindent.py converts newlines to platform default

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: That is a valid use case, so +1 on not changing behavior and adding a new option in 3.3 (in another bug report). What is your reply to msg125818? -- ___ Python tracker

[issue10639] reindent.py converts newlines to platform default

2011-01-29 Thread Jason R. Coombs
Jason R. Coombs added the comment: That's great that reindent works in your environment, but that's no help in my environment. Here's the use case: We have a software package developed in Unix and with Unix LF line endings. The code base may also contain files with CRLF line endings (I can't

[issue11045] shutil._make_tarball

2011-01-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: For 3.2, just make the one-line fix. I'm worry that a test may be hard to get right and would be a risk in and of itself this late in the release cycle. For the backports, a test would be nice (since we have time to fix a test if it turns out to be proble

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
Kelsey added the comment: I have retested; this issue was related to a bug I introduced in shutil (fixed now, and patch sent upstream) -- resolution: -> invalid status: open -> closed ___ Python tracker

[issue11045] shutil._make_tarball

2011-01-29 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- versions: +Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11045] shutil._make_tarball

2011-01-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: Please apply right away. -- nosy: +rhettinger resolution: -> accepted versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
Kelsey added the comment: This could be my mistake. . I think an early attempt at patching Issue 11045, I disabled os.makedirs(archive_dir) in shutil. I am going to retest -- ___ Python tracker __

[issue11065] Fatal "can't locate locale" errors when zip file with directories is on the PYTHONPATH.

2011-01-29 Thread Ned Deily
Changes by Ned Deily : -- status: open -> closed superseder: -> Possible regression with stdlib in zipfile ___ Python tracker ___ ___

[issue11045] shutil._make_tarball

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: I’ve checked the code and this is the only place where logger.* is not protected by a check for None. There is no unit test, though. My patch adds two things: Make one formatting call lazy (use logging.info(one, two) instead of one % two), lower-case one messag

[issue11065] Fatal "can't locate locale" errors when zip file with directories is on the PYTHONPATH.

2011-01-29 Thread Ned Batchelder
Ned Batchelder added the comment: With help from ned_deily in #python-dev, we confirmed this is a dup of http://bugs.python.org/issue10955, and is already fixed. -- resolution: -> duplicate ___ Python tracker __

[issue11052] Fix OS X IDLE menu accelerators for Save As and Save Copy

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88236 (with release manager approval) for 3.2rc2, r88237 for 3.1, and r88238 for 2.7. -- resolution: accepted -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <

[issue11045] shutil._make_tarball

2011-01-29 Thread Kelsey
Kelsey added the comment: Adding patch to ticket -- keywords: +patch Added file: http://bugs.python.org/file20609/check-logger-is-none.patch ___ Python tracker ___ _

[issue9124] Mailbox module should use binary I/O, not text I/O

2011-01-29 Thread R. David Murray
R. David Murray added the comment: (I hope you meant I was working on a patch :) Patch is done, but there is one remaining test failure that I'm not sure how to handle. The test is test_add_text_file_warns. The code checks to see if a file is a subclass of io.TextIOWrapper, and if so warns

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: It looks like my test is not robust enough: http://www.python.org/dev/buildbot/all/builders/x86%20OpenIndiana%203.1/builds/298 -- ___ Python tracker ___

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Joe Peterson
Joe Peterson added the comment: Good catch on the test. Note that for issue 10941, we'll want a new non-timezone-dependent test case that can catch the DST-related problem. I'll post a new patch to issue 10941 now and describe this some more there. -- __

[issue10975] #10961: Pydoc touchups in new 3.2 Web server (issue4090042)

2011-01-29 Thread Éric Araujo
Changes by Éric Araujo : -- Removed message: http://bugs.python.org/msg127466 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10961] Pydoc touchups in new browser for 3.2

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Replied on Rietveld. Ezio, I think you have good HTML/CSS knowledge, so I’m adding you to nosy. If you could read the short discussion and Rietveld and weigh in, it would be very helpful. -- nosy: +ezio.melotti ___

[issue11048] "import ctypes" causes segfault on read-only filesystem

2011-01-29 Thread Daniel Urban
Daniel Urban added the comment: Thanks for the instructions. You're right, this way I can reproduce the segfault. -- ___ Python tracker ___

[issue11065] Fatal "can't locate locale" errors when zip file with directories is on the PYTHONPATH.

2011-01-29 Thread Ned Batchelder
New submission from Ned Batchelder : Run this shell script against 3.2, and it will fail. Against 3.1, it succeeds. I've been running tests on Ubuntu 10.10. mkdir -p sub cat >sub/modzip.py < ___ ___

[issue10975] #10961: Pydoc touchups in new 3.2 Web server (issue4090042)

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: XP. I think Firefox 3.5 is still widely used, maybe older version too. For Windows, I guess IE 7 and 8 are used too. Opera seems to be compliant, so a good test; on Mac OS X, I understand other browsers are used. clear="all"> ' > at the end of the header. I thi

[issue2193] Cookie Colon Name Bug

2011-01-29 Thread karl
karl added the comment: @aclover see my comment http://bugs.python.org/issue2193#msg125423 Adam Barth is working for Google on Chrome. The RFC being written is made in cooperation with other browser developers. If you have comments about this RFC you are welcome to add comment on freenode at

[issue11056] 2to3 fails for inner __metaclass__ class definition

2011-01-29 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mail

[issue11054] OS X installer build script for 3.2 can no longer build with system Python on OS X 10.5

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88235 for 3.2rc2 with release manager approval. Pending 2.7 backport. -- priority: release blocker -> resolution: -> fixed stage: patch review -> committed/rejected status: open -> pending versions: +Python 2.7 __

[issue11053] OS X IDLE 3 with Tk 8.4 appears to hang with syntax error

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88234 for 3.2rc2. Pending backport to 3.1. -- priority: release blocker -> resolution: -> fixed stage: commit review -> committed/rejected status: open -> pending ___ Python tracker

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Merged to 3.1 in r88233. -- nosy: +benjamin.peterson resolution: accepted -> fixed stage: commit review -> committed/rejected versions: +Python 3.1 ___ Python tracker __

[issue11056] 2to3 fails for inner __metaclass__ class definition

2011-01-29 Thread nw
Changes by nw : -- keywords: +patch Added file: http://bugs.python.org/file20607/fix.patch ___ Python tracker ___ ___ Python-bugs-list

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-29 Thread Ned Deily
Ned Deily added the comment: Committed in r88232 for 3.2rc2. Pending 2.7 backport, if necessary. -- priority: release blocker -> resolution: accepted -> fixed stage: commit review -> committed/rejected status: open -> pending ___ Python tracker

[issue11063] uuid.py module import has heavy side effects

2011-01-29 Thread Keith Dart
Changes by Keith Dart : -- nosy: +kdart ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue11064] abc documentation version conflict

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: No problem, thanks for wanting to help. Don’t hesitate to report other bugs you may find in the future, if you find them in the latest versions :) -- resolution: rejected -> out of date stage: -> committed/rejected _

[issue9124] Mailbox module should use binary I/O, not text I/O

2011-01-29 Thread STINNER Victor
STINNER Victor added the comment: > The last step is running the tests on Windows. > Attached is the updated patch. mailbox4.patch doesn't pass on Windows, Raymond is working on a patch. -- ___ Python tracker

[issue11064] abc documentation version conflict

2011-01-29 Thread Dustin Farris
Dustin Farris added the comment: Negative. 2.6.6 is correct. Apologies. -- resolution: -> rejected status: open -> closed ___ Python tracker ___ _

[issue11064] abc documentation version conflict

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Can you reproduce with 2.6.6? -- assignee: docs@python -> components: +Library (Lib) -Documentation nosy: -docs@python versions: -Python 2.6, Python 3.1 ___ Python tracker ___

[issue11061] Verify command option before parsing config file

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: I’m afraid I don’t understand your report. -- versions: +3rd party ___ Python tracker ___ ___ Python-b

[issue11064] abc documentation version conflict

2011-01-29 Thread Dustin Farris
Dustin Farris added the comment: This is what I get: Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) [GCC 4.2.1 (Apple Inc. build 5646)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import abc >>> help(abc) NAME abc - Abstract Base Classes (ABCs)

[issue11064] abc documentation version conflict

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Not for me: | class C: | __metaclass__ = ABCMeta | @abstractproperty -- nosy: +eric.araujo ___ Python tracker __

[issue11064] abc documentation version conflict

2011-01-29 Thread Dustin Farris
New submission from Dustin Farris : Running help(abc) in Python 2.6.1 displays syntax for Py3k. -- assignee: docs@python components: Documentation messages: 127453 nosy: docs@python, dustin.farris priority: normal severity: normal status: open title: abc documentation version conflict ty

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: The warnings mean that some code is iterating over the string 'setup.py' instead of a list like ['setup.py']. This message comes from the manifest module, but I don’t know more. Regarding the bug and proposed patch, I wonder. This was not needed previously, s

[issue11063] uuid.py module import has heavy side effects

2011-01-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11057] Missing import of DistutilsOptionError

2011-01-29 Thread Éric Araujo
Changes by Éric Araujo : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue11023] pep 227 missing text

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: This tracker is for reporting bugs found in the CPython distribution, not PEPs, PyPI or other websites. You can write to the python-dev mailing list if the XXX bother you. -- assignee: docs@python -> components: -Documentation nosy: +eric.araujo -docs

[issue11047] Bad description for an entry in whatsnew/2.7

2011-01-29 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +barry, brett.cannon, flox, gangesmaster, loewis, meador.inge title: Bad description for a change -> Bad description for an entry in whatsnew/2.7 ___ Python tracker __

[issue11045] shutil._make_tarball

2011-01-29 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11048] "import ctypes" causes segfault on read-only filesystem

2011-01-29 Thread Pavel Labushev
Pavel Labushev added the comment: How to reproduce: # mkdir /mnt/readonly # mount --bind / /mnt/readonly # mount -o remount,ro /mnt/readonly # mount -t proc proc /mnt/readonly/proc # chroot /mnt/readonly python3.2 -c "import ctypes" Segmentation fault If your python build expected to have this

[issue10639] reindent.py converts newlines to platform default

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: I’m not opposed to reindent normalizing EOLs, given that our VCS hooks will translate them to the right thing (for example, making sure that files specific to the Windows build use CRLF, not LF, even if edited on POSIX). -- _

[issue11025] Distutils2 install command without setup.py or setup.cfg create an UNKNOWN-UNKNOWN.dist-info distribution

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: Closing as duplicate, please comment on the other bug report if the unwanted behavior is still here. -- nosy: -tarek, tarek-ziade resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Some commands should stop if

[issue11036] Allow multiple files in the description-file metadata

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: +1, this was agreed upon last summer: https://bitbucket.org/Merwok/sample-distutils2-project/src/tip/new-config-file.rst#cl-255 (see also fellowship archive). Fixed by Gaël in c8dfb3c63894. -- resolution: -> fixed stage: -> committed/rejected status:

[issue9124] Mailbox module should use binary I/O, not text I/O

2011-01-29 Thread R. David Murray
R. David Murray added the comment: OK, I've added deprecation warnings for using StringIO or text mode files as input. I found one bug thereby, but it is a bug that pre-existed the patch (see issue 11062). I've completed my code review. To address Victor's question about the mh-sequences

[issue10845] test_multiprocessing failure under Windows

2011-01-29 Thread Georg Brandl
Georg Brandl added the comment: Looks like Antoine agreed, so this should be fine to go in. -- ___ Python tracker ___ ___ Python-bugs

[issue10939] imaplib: Internaldate2tuple raises KeyError parsing month and does not work with negative TZ offset due to bytes/str issues

2011-01-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in revision 88231. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue11037] Implementing PEP 382

2011-01-29 Thread Éric Araujo
Éric Araujo added the comment: This message makes me think it is not accepted: http://mail.python.org/pipermail/python-dev/2010-May/100457.html -- ___ Python tracker ___ __

  1   2   >