[issue5700] io.FileIO calls flush() after file closed

2009-04-05 Thread Brian Quinlan
Brian Quinlan added the comment: Discussion about this bug is ongoing in python-dev. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue5705] os.getpwent returns unsigned 32bit value, os.setuid refuses it

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: merged into release26-maint. release30-maint still needed. -- versions: -Python 2.6 ___ Python tracker ___ _

[issue2254] Python CGIHTTPServer information disclosure

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: Fixed in trunk r71303. This potentially changes the behavior of CGIHTTPServer (for the better) so this is probably not appropriate to backport to a release branch unless someone really considers the security of this to be severe. If backported, the new modul

[issue2254] Python CGIHTTPServer information disclosure

2009-04-05 Thread Gregory P. Smith
Changes by Gregory P. Smith : Removed file: http://bugs.python.org/file9628/CGIHTTPServer_is_cgi_fix.diff ___ Python tracker ___ ___ Python-bug

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Jonathan Lange
Jonathan Lange added the comment: FWIW, I kind of like the tests here: http://bazaar.launchpad.net/~jml/testtools/trunk/annotate/head%3A/testtools/tests/test_testtools.py#L221 -- ___ Python tracker

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Jonathan Lange
Jonathan Lange added the comment: On Mon, Apr 6, 2009 at 2:16 PM, Kumar McMillan wrote: > > Kumar McMillan added the comment: > > I like this patch.  However, a nice-to-have would be that _doCleanups() > prints a traceback from function(*args, **kwargs) (if there is one) the > same way that at

[issue5706] setuptools doesn't honor standard compiler variables

2009-04-05 Thread Garrett Cooper
New submission from Garrett Cooper : I realize that cross-compilation isn't supported yet, _but_ setuptools needs to be modified such that standard compilation variables are supported, e.g. CC, CFLAGS, CPPFLAGS, LD, LDFLAGS, LDLIBS. The -i, -l, and -L flags with setup.py with build_ext provide a

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: > Does distutils use _zip_directory_cache in any way? Not at all. But pkgutil does, and uses to get a dirlist, so I guess a new API should be created in zipimport to handle this case as well. (I think it's some setuptools code originallyt, that landed in pkgutil)

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Kumar McMillan
Kumar McMillan added the comment: I like this patch. However, a nice-to-have would be that _doCleanups() prints a traceback from function(*args, **kwargs) (if there is one) the same way that atexit does. That would aid in debugging mis-written cleanup functions yet would not intrude on your te

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Kumar McMillan
Changes by Kumar McMillan : -- nosy: +kumar303 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Brett Cannon
Brett Cannon added the comment: Does distutils use _zip_directory_cache in any way? If not then setuptools is in the wrong here for using a private attribute and it is on them to make it work if the attribute does not exist, period. Otherwise someone will need to come up with a very simple API

[issue1737737] telnetlib.Telnet does not process DATA MARK (DM)

2009-04-05 Thread Jack Diederich
Jack Diederich added the comment: RFC 854 says that DM, like all other commands, is only valid when preceded by an IAC. telnetlib does filter these out appropriately (I just added tests for it in r71302 and it behaves appropriately). -- resolution: -> invalid status: open -> closed _

[issue5696] test_telnetlib augmentation

2009-04-05 Thread Jack Diederich
Jack Diederich added the comment: committed in r71302 -- resolution: -> accepted status: open -> closed ___ Python tracker ___ ___ Py

[issue1672568] silent error in email.message.Message.get_payload

2009-04-05 Thread Daniel Diniz
Daniel Diniz added the comment: Hmm, ISTM that a change that breaks existing code that relies on documented behavior has a negligible chance of being accepted. However, I agree that the current behavior isn't developer-friendly. I think adding an alternative behavior to get_payload (add a new p

[issue1252001] Issue with telnetlib read_until not timing out

2009-04-05 Thread Jack Diederich
Jack Diederich added the comment: This was fixed in r47215 -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue1779613] Replace AtheOS w/ Syllable

2009-04-05 Thread R. David Murray
R. David Murray added the comment: The syllable web site talks about doing a Python3 port, and about already having a python port (ie: python2), so given current policy on OS support it seems to me that this is now a dead issue. -- nosy: +r.david.murray resolution: -> out of date stage

[issue1531859] Tracing and profiling functions can cause hangs in threads

2009-04-05 Thread Daniel Diniz
Daniel Diniz added the comment: Rocky, No, 2.6 was released in 2008 and the bug was indeed filled against 2.5. However, 2.5 will not receive general bugfixes anymore, so I've changed the target version to 2.6 (as it's where it can be fixed if still present). Setting it to pending so other peopl

[issue1565509] Repair or Change installation error

2009-04-05 Thread Daniel Diniz
Daniel Diniz added the comment: Greg, I've never seen this problem being reported by another user, so ISTM it's fair to use 'uncommon' (as in 'rarely occurring or appearing, infrequent, occasional, unusual') to refer to it. Also, AFAIK, 'Repair or Change' is rarely reliable. But I agree that if

[issue5482] RFC: improve distutils bdist_rpm so it builds pure python modules as single packages that works across architectures

2009-04-05 Thread Rudd-O
Rudd-O added the comment: Excellent. El Domingo 05 Abril 2009, =?utf-8?q?tarek_ziad=c3=a9_=3creport=40bugs=2epython=2eorg=3...@psf.upfronthosting.co.za escribió: > Tarek Ziadé added the comment: > > Rudd-O, I am trying to see if we can build a team of people that could > work on python <->

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Maciek Fijalkowski
Maciek Fijalkowski added the comment: setuptools at least deletes stuff from _zip_directory_cache (via _uncache function in easy_install.py). it also iterates over it and checks for existance of elements. What about documenting details about _zip_directory_cache: * does it need to be a normal p

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: maybe what's missing is a public API for the clear() method since setuptools uses it by calling it directly -- ___ Python tracker ___ _

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: I am not sure what you would like to see added. in zipimport.c: "- _zip_directory_cache: a dict, mapping archive paths to zip directory info dicts, as used in zipimporter._files. " while there are no direct test, Lib/test/test_zipimport.py covers it becauseit

[issue2254] Python CGIHTTPServer information disclosure

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: fyi - Your patch does not work on windows as it uses os.path for uri manipulation. that means it behaves differently with regards to / and \ based on platform. I'm making a new one. I've written a unittest. should be fixed soon. -- __

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Maciek Fijalkowski
Maciek Fijalkowski added the comment: it == _zip_directory_cache -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Jonathan Lange
Jonathan Lange added the comment: On Mon, Apr 6, 2009 at 10:06 AM, Robert Collins wrote: > On Sun, 2009-04-05 at 23:57 +, Michael Foord wrote: >> Michael Foord added the comment: >> >> My apologies - the jml code on launchpad runs clean ups before taerDown. >> >> http://bazaar.launchpad.ne

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Robert Collins
Robert Collins added the comment: On Sun, 2009-04-05 at 23:57 +, Michael Foord wrote: > Michael Foord added the comment: > > My apologies - the jml code on launchpad runs clean ups before taerDown. > > http://bazaar.launchpad.net/~jml/testtools/trunk/annotate/head%3A/testtools/testcase.py

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Michael Foord
Michael Foord added the comment: My apologies - the jml code on launchpad runs clean ups before taerDown. http://bazaar.launchpad.net/~jml/testtools/trunk/annotate/head%3A/testtools/testcase.py -- ___ Python tracker

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: > while it has no single tests and no documentation." what "it" refers to ? zipimport, distutils or setuptools ? -- ___ Python tracker ___ ___

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Robert Collins
Robert Collins added the comment: On Sun, 2009-04-05 at 23:49 +, Michael Foord wrote: > > > As an interesting data point, the Bzr code does clean ups *before* > tearDown. No it doesn't: We subclass unittest.TestCase. We also override run() to make tearDown run always. Our base test case

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Michael Foord
Michael Foord added the comment: @Garrett / Virgil I don't think anything other than very short term confusion is possible. Whichever decision is made a developer who assumes the opposite will actually get an error. In both cases the downside is that in certain circumstances you could attempt t

[issue5705] os.getpwent returns unsigned 32bit value, os.setuid refuses it

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: Fixed in r71299 trunk. Needs backporting to release26-maint and release30-maint. (I'm waiting for buildbot results before I do that) -- versions: -Python 2.7 ___ Python tracker

[issue5697] heapq.nlargest does not perform stable sort

2009-04-05 Thread George Sakkis
George Sakkis added the comment: Should have checked a recent version first; that's from 2.5 (r25:51908, Sep 19 2006, 09:52:17). Sorry for the noise. -- status: open -> closed ___ Python tracker ___

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Maciek Fijalkowski
Maciek Fijalkowski added the comment: The bug with this is that setuptools uses it (and even relies on what is there and in what order), while it has no single tests and no documentation. -- ___ Python tracker

[issue5696] test_telnetlib augmentation

2009-04-05 Thread Jack Diederich
Changes by Jack Diederich : -- components: +Tests stage: -> patch review type: -> behavior versions: +Python 2.7, Python 3.1 ___ Python tracker ___ _

[issue2953] _zip_directory_cache untested and undocumented

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: _zip_directory_cache is part of the zipimport module (C module) you can find in Modules/zipimport.c. The tests are located here: ./Lib/test/test_zipimport.py _zip_directory_cache is a dict used by zipimporter_init to speed up the lookup. Notice that if it is suc

[issue5696] test_telnetlib augmentation

2009-04-05 Thread Jack Diederich
Changes by Jack Diederich : Removed file: http://bugs.python.org/file13617/test_telnetlib.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue5696] test_telnetlib augmentation

2009-04-05 Thread Jack Diederich
Jack Diederich added the comment: added some tests for testing IAC commands and SB data handling. -- Added file: http://bugs.python.org/file13624/test_telnetlib.patch ___ Python tracker

[issue5095] msi missing from "bdist --help-formats"

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: added in r71291 and r71293 Thx Steven -- status: open -> closed versions: +Python 3.0 -Python 2.5, Python 2.6, Python 2.7, Python 3.1 ___ Python tracker _

[issue5705] os.getpwent returns unsigned 32bit value, os.setuid refuses it

2009-04-05 Thread Gregory P. Smith
New submission from Gregory P. Smith : Running test_httpservers on a 64-bit build of Python 2.7 trunk on OS X 10.5: (I added a print "nobody=", nobody) test_authorization (__main__.CGIHTTPServerTestCase) ... nobody= 4294967294 Exception happened during p

[issue5704] Command line option '-3' should imply '-t'

2009-04-05 Thread Simon Anders
New submission from Simon Anders : The '-3' command line option in Python 2.6 is supposed to warn whenever encountering something that would throw an error in Python 3. Mixing of tabs and spaces has become illegal in Python 3. However, Python 2.6, called with '-3', passes silently over this unles

[issue5699] Strange interaction between -m and pydoc

2009-04-05 Thread Nick Coghlan
Nick Coghlan added the comment: Duplicate of issue 2029 - it's apparently a bug in pydoc's sys.path manipulation, but I haven't got around to reviewing Guilherme's patch yet. -- resolution: -> duplicate status: open -> closed ___ Python tracker

[issue5703] inside *currentmodule* some links is disabled

2009-04-05 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : See http://docs.python.org/library/email.mime.html Inside MIMEApplication documentation, link to MIMEApplication is enabled but link to MIMENonMultipart is disabled. This happens because MIMENonMultipart is not in email.mime.application (specified by curre

[issue2029] "python -m pydoc -g" fails

2009-04-05 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue2943] Distutils should generate a better error message when the SDK is not installed

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: Does it mean you won't get the settings for "include", "lib", "libpath" and "path" when you call vcvarsall.bat *only* of the SDK is not installed, or can't we have other cases ? If the latter is true, maybe a better formatted Error message where we list founded va

[issue809887] Improve pdb breakpoint feedback

2009-04-05 Thread Daniel Diniz
Daniel Diniz added the comment: I had already realized[1] (thanks John!) I had no good reason to suggest closing this one, bit forgot to update the issue, sorry. I think it was a knee-jerk reaction to a RFE that was open for six years without a 'ditto', but agree it's a valid request. [1] http

[issue5482] RFC: improve distutils bdist_rpm so it builds pure python modules as single packages that works across architectures

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: Rudd-O, I am trying to see if we can build a team of people that could work on python <-> RPM tasks to adress all related issues. I'll let you know when it's set. -- priority: -> high ___ Python tracker

[issue436259] [Windows] exec*/spawn* problem with spaces in args

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: I am closing it. I have also added a test case for this function, for future changes. r71286 -- resolution: -> rejected status: open -> closed ___ Python tracker __

[issue5702] str.isprintable() -> str.is_printable()

2009-04-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Sorry, it has already been released this way. Besides, all other str methods follow this convention. -- nosy: +benjamin.peterson resolution: -> rejected status: open -> closed ___ Python tracker

[issue1491431] distutils.filelist.glob_to_re fails

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: fixed in r71280 and r71284 backported in r71281 and r71285 -- status: open -> closed versions: +Python 2.7, Python 3.1 ___ Python tracker ___ __

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Robert Collins
Robert Collins added the comment: On Sun, 2009-04-05 at 21:31 +, Antoine Pitrou wrote: > Antoine Pitrou added the comment: > > > So, we are talking about adding a feature that could cause problem whether > > cleanup is performed before tearDown or after tearDown. Don't we risk > > confus

[issue5702] str.isprintable() -> str.is_printable()

2009-04-05 Thread Retro
New submission from Retro : Please consider of making the descriptor isprintable() of the str object be named with an underscore as is_printable(). -- components: Demos and Tools messages: 85571 nosy: Retro severity: normal status: open title: str.isprintable() -> str.is_printable() vers

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Garrett Cooper
Garrett Cooper added the comment: I see the validity in the concern raised by Virgil: I think this can be simplified from a user perspective by saying `I'm electing to use cleanUp over tearDown'. The two systems are similar, but also very different semantically as tearDown gets executed in the

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Michael Foord
Michael Foord added the comment: This is actually a minor point about the order things happen in. I don't think it will cause confusion in practise once we have made a decision and documented it. Particularly if we decide to call clean ups before tearDown then I will make adding new ones during

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: > So, we are talking about adding a feature that could cause problem whether > cleanup is performed before tearDown or after tearDown. Don't we risk > confusing developers who are not familiar with the cleanup order? Well, we could do both. Call cleanups befo

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Virgil Dupras
Virgil Dupras added the comment: So, we are talking about adding a feature that could cause problem whether cleanup is performed before tearDown or after tearDown. Don't we risk confusing developers who are not familiar with the cleanup order? Do we really want to add this feature? The added

[issue1113244] Please add do-while guard to Py_DECREF etc.

2009-04-05 Thread Matthias Klose
Matthias Klose added the comment: committed these in r71229 and r71271. I'm not yet closing the report. tim_one, I will conditionalize these, but I'm unsure if these should be conditionalized on compilers which are known not to optimize, or if it should be just conditionalized on gcc (and icc?)

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Michael Foord
Michael Foord added the comment: A use case for running clean ups before tearDown (in which case addCleanUp would need to raise an exception if called during tearDown). You have existing code which (for example) creates an SSH connection in setUp and removes it in tearDown. If clean ups are ru

[issue5697] heapq.nlargest does not perform stable sort

2009-04-05 Thread DSM
DSM added the comment: I can't reproduce in current python, and the relevant lines now look like it = izip(iterable, count(0,-1))# decorate it = izip(imap(key, in1), count(0,-1), in2) # decorate It seems that these were fixed long ago by rhettinger

[issue5698] pydoc -w doesn't produce proper HTML

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: The DOCTYPE fix is fine. However, I'm not sure about the charset -- why should it be UTF-8? Pydoc will output anything in docstrings, which can be in any encoding. -- ___ Python tracker

[issue5697] heapq.nlargest does not perform stable sort

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue459007] Document sys.path on Windows

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: mhammond -> georg.brandl nosy: +georg.brandl priority: high -> normal ___ Python tracker ___ _

[issue5679] cleanUp stack for unittest

2009-04-05 Thread Michael Foord
Michael Foord added the comment: I'm in favour of running clean ups afterwards on the basis that it makes things possible that would otherwise not be possible. > If your cleanup relies on something which has been set up during setUp > and will be dropped during tearDown (a database connection,

[issue2821] unittest.py sys.exit error

2009-04-05 Thread Michael Foord
Michael Foord added the comment: IDLE catches the SystemExit function raised by TestProgram().runTests() and prints the traceback. Not a bug in unittest. -- nosy: +michael.foord resolution: -> works for me status: open -> closed ___ Python tracker

[issue2578] additional unittest type equality methods

2009-04-05 Thread Steve Purcell
Changes by Steve Purcell : -- nosy: -purcell ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue2578] additional unittest type equality methods

2009-04-05 Thread Michael Foord
Michael Foord added the comment: Committed in revision 71263. Closing as there is nothing outstanding on this issue. -- resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue2170] rewrite of minidom.Node.normalize

2009-04-05 Thread R. David Murray
R. David Murray added the comment: Andrew, any objection to my going ahead and applying this patch? -- ___ Python tracker ___ ___ Pyth

[issue5442] [3.1alpha1,2] test_importlib fails on Mac OSX 10.5.6

2009-04-05 Thread Ismail Donmez
Ismail Donmez added the comment: [~]> python3.1 tester.py original name: .CFUserTextEncoding changed name: .CFUSERTEXTENCODING case-sensitive I'll do a rebuild just in case. Thanks. -- ___ Python tracker _

[issue1202] zlib.crc32() and adler32() return value

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: J. David Ibáñez - do you still happen to have that Document.odt laying around? -- ___ Python tracker ___ _

[issue2578] additional unittest type equality methods

2009-04-05 Thread Gregory P. Smith
Gregory P. Smith added the comment: fyi - Your docs in unittest-assertis.diff mention the wrong method name (assertIsNotNone instead of assertIsNot). fix that and commit. The unittest-sameelements.diff patch looks good. -- ___ Python tracker

[issue5695] test_logging fails when run twice in a row

2009-04-05 Thread Brett Cannon
Brett Cannon added the comment: Yep, my mistake. To make up for my screw-up I backported the change to py3k in r71259. In trunk you might want to make the test more robust by moving the warnings filter change to within the try statement like I did in py3k to prevent that from throwing an excepti

[issue5442] [3.1alpha1,2] test_importlib fails on Mac OSX 10.5.6

2009-04-05 Thread Brett Cannon
Brett Cannon added the comment: Something is wrong with your build, Ismail, because most of those failures are because of things that were added between alpha1 and alpha2. But to speed this up, can you tell me what the file I attached to the issue prints out? -- Added file: http://bugs

[issue736428] allow HTMLParser error recovery

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Setting as superseder. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> allow HTMLParser to continue after a parse error ___ Python tracker _

[issue1170065] HTTPResponse.getheaders() returns lowercased header names

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Setting as superseder. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> urllib2 header capitalization ___ Python tracker ___

[issue500698] Taint a la Perl?

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: This is too vague and too large an issue to be tracked by an RFE issue. Concrete proposals and implementations must go through the PEP process. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed __

[issue848910] Enable crosscompilation

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue1169193] Handle ungzipped man pages in rpm builds correctly

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Closing this one as duplicate. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> bdist_rpm fails when installing man pages ___ Python tracker

[issue957381] bdist_rpm fails on redhat9, fc1, fc2

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue602893] cgitb tracebacks not accessible

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Committed a similar patch in r71255. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue5694] spurious output in test_distutils

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: fixed in r71253 and r71254 -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue809887] Improve pdb breakpoint feedback

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Why do you propose closing? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list maili

[issue813198] Migrate PEP material to docs

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: This issue is very unspecific, and much documentation has been added since. If something is still missing, a new issue should be opened. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Py

[issue2703] SimpleXMLRPCDispatcher.__init__ is not python2.4-backward-compatible

2009-04-05 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm -0, but if the tests pass and Matthias wants to commit this to 2.6 and 2.7, it's fine with me. -- assignee: -> doko nosy: +barry resolution: -> accepted versions: +Python 2.7 -Python 2.5 ___ Python tracker

[issue831574] Solaris term.h needs curses.h

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue836058] socket.send() on Win98 behaves as nonblocking when timeout is set

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Let's assume it is Win9x-only. -- dependencies: -Inappropriate error received using socket timeout on Windows. nosy: +georg.brandl resolution: -> out of date status: open -> closed superseder: -> Inappropriate error received using socket timeout on Win

[issue2578] additional unittest type equality methods

2009-04-05 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue1886] Permit to easily use distutils "--formats=tar, gztar, bztar" on all systems

2009-04-05 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- priority: normal -> high versions: +Python 3.1 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mail

[issue5685] use tarinfo module in distutils

2009-04-05 Thread Tarek Ziadé
Tarek Ziadé added the comment: superseded by #1886 -- status: open -> closed superseder: -> Permit to easily use distutils "--formats=tar,gztar,bztar" on all systems ___ Python tracker ___

[issue1030499] os.path.join() does not raise TypeError

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: +1 for duck typing. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker ___ _

[issue993580] inspect.findsource does not call linecache.checkcache

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Setting it as a superseder, then. -- dependencies: -inspect.getsource doesn't update when a module is reloaded nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> inspect.getsource doesn't update when a module is reloaded

[issue1446619] extended slice behavior inconsistent with docs

2009-04-05 Thread Steven Bethard
Changes by Steven Bethard : -- nosy: +bethard -bediviere.historic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue1113244] Please add do-while guard to Py_DECREF etc.

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Assigning to Matthias since he added do-while(0) to Py_DECREF in r71229. -- assignee: -> doko nosy: +doko, georg.brandl ___ Python tracker ___

[issue1159139] cgi.py invalid REQUEST_METHOD set

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Turns out this is caused by setting REQUEST_METHOD to 'cgi', which is completely unmotivated. Not doing this lets the example script work fine. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed __

[issue1144263] reload() is broken for C extension objects

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: I agree with Grant. There seems to be no way this can be sanely implemented with today's infrastructure. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker

[issue5330] profile and cProfile do not report C functions called with keyword arguments

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> nbastin nosy: +nbastin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1229680] Tracing C function calls and keyword arguments

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Setting #5330 as a superseder, which also has a patch. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> profile and cProfile do not report C functions called with keyword arguments _

[issue1265100] sequence slicing documentation incomplete

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: There's also #1446619, so closing as a duplicate. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> extended slice behavior inconsistent with docs ___ Python tracker

[issue1446619] extended slice behavior inconsistent with docs

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: See also #1265100. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1278102] help() broken, especially on Windows

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: This is out of date now that Python includes the documentation for those keywords. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue1251026] cgitb gives wrong lineno inside try:..finally:

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Works for me as well. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker ___ ___

[issue1249749] Encodings and aliases do not match runtime

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list

  1   2   >