[issue6818] remove/delete method for zipfile/tarfile objects

2009-10-26 Thread victorlee129
victorlee129 added the comment: I done it In a very *violent* way. Is it ok for you thought? if so, would anybody please fix it into the lib? -- components: -IO nosy: +victorlee129 versions: +Python 3.1 -Python 3.2 Added file: http://bugs.python.org/file15199/delete.tar.gz ___

[issue7206] 64 bit python fails on Windows 7

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: > No action- the interpreter fails to start. How precisely do you start the interpreter (and what interpreter precisely)? -- ___ Python tracker __

[issue6818] remove/delete method for zipfile/tarfile objects

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: > I done it In a very *violent* way. > Is it ok for you thought? In the form in which you have done it, it is clearly unacceptable for inclusion in the library: we don't want to add two modules "delete" and "classtools". In addition, notice that code is for t

[issue7165] xmlrpc.server assumes sys.stdout will have a buffer attribute

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: I agree with Antoine that CGIXML... is right in accessing sys.stdout.buffer; this really needs binary IO. Consequentially, his patch also looks right to me; please apply. -- assignee: -> pitrou resolution: -> accepted __

[issue7165] xmlrpc.server assumes sys.stdout will have a buffer attribute

2009-10-26 Thread R. David Murray
R. David Murray added the comment: Patch applied in r75710. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1602] windows console doesn't print utf8 (Py30a2)

2009-10-26 Thread Mark Summerfield
Mark Summerfield added the comment: Glenn Linderman's fix pretty well works for me on XP Home. I can print every Unicode character up to and including U+D7FF (although most just come out as rectangles, at least I don't get encoding errors). It fails at U+D800 with message: UnicodeEncodeError:

[issue7207] test_telnetlib fails on OS X 10.6

2009-10-26 Thread Mark Dickinson
New submission from Mark Dickinson : test_telnetlib fails consistently on OS X 10.6, for a default (64-bit) build of py3k. Test output below. It looks to me as though this is just a race condition in the test (possibly combined with socket-related peculiarities of OS X) rather than a problem

[issue7169] zipfile leaves a file handle open if file is zero size

2009-10-26 Thread Ryan Leslie
Ryan Leslie added the comment: I expect this should already be fixed by the commit in http://bugs.python.org/issue6511 BadZipFile will now be raised for empty files rather than IOError, and so ZipFile._GetContents() should now also close the file. The fix was committed to trunk, but I don't se

[issue1602] windows console doesn't print utf8 (Py30a2)

2009-10-26 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Mark Summerfield wrote: > > Mark Summerfield added the comment: > > Glenn Linderman's fix pretty well works for me on XP Home. I can print > every Unicode character up to and including U+D7FF (although most just > come out as rectangles, at least I don't

[issue7207] test_telnetlib fails on OS X 10.6

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: Here's a patch that fixes the problem for me. For each of the tests defined in WriteTests (there's only one at the moment), it forces the server to wait until the test is complete before closing the connection. -- keywords: +patch stage: needs patch

[issue7207] test_telnetlib fails on OS X 10.6

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: Assigning to Jack for review. -- assignee: -> jackdied keywords: +needs review ___ Python tracker ___ _

[issue7169] zipfile leaves a file handle open if file is zero size

2009-10-26 Thread skelker
skelker added the comment: Thanks. I did do a search before opening my ticket. Not sure why I didn't see that in my search. Sorry for the duplicate ticket. Steve Kelker (952)882-4381 (or x4381) -- ___ Python tracker

[issue7169] zipfile leaves a file handle open if file is zero size

2009-10-26 Thread skelker
skelker added the comment: Fixed in http://bugs.python.org/issue6511 -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-

[issue7208] Getpass echo's password to screen on 2.6, but not on 2.5 or 3.1

2009-10-26 Thread Peter Saunders
New submission from Peter Saunders : Only sucessfully replicated on solaris. When running getpass() - it goes into non echo mode, however, once enter is pressed, the password is echoed to the screen. E.g. > /opt/python/2.6.3/bin/python -c 'import getpass; x=getpass.getpass()' Password: bob Thi

[issue7208] Getpass echo's password to screen on 2.6, but not on 2.5 or 3.1

2009-10-26 Thread Peter Saunders
Changes by Peter Saunders : -- keywords: +patch Added file: http://bugs.python.org/file15201/getpass.diff ___ Python tracker ___ ___ Py

[issue3223] py3k warn on use of frame.f_exc*

2009-10-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: This was fixed in r67902. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue7208] Getpass echo's password to screen on 2.6, but not on 2.5 or 3.1

2009-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks like a critical bug, thanks. -- nosy: +pitrou priority: -> critical stage: -> patch review type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker

[issue7117] Backport py3k float repr to trunk

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: r75720: Backport py3k version of pystrtod.c to trunk. There are still some (necessary) differences between the two versions, which should become unnecessary once everything else is hooked up. The differences should be re-examined later.

[issue7157] Fix Download Current Documentation link

2009-10-26 Thread Georg Brandl
Georg Brandl added the comment: Fixed now that 2.6.4 is final. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue7209] Prevents uint_t from being used on QNX

2009-10-26 Thread Matt Kraai
New submission from Matt Kraai : pyconfig.h defines _POSIX_C_SOURCE to 200112L, which prevents QNX's sys/types.h from defining uint_t. Samba 4 uses this type, so it fails to compile if Python.h is included first (cf. https://bugzilla.samba.org/show_bug.cgi?id=6842). The attached patch fixes thi

[issue7117] Backport py3k float repr to trunk

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: [Eric, on removing f to g conversions] > Should we also do that as part of this exercise? Or should it be another > issue, or not done at all? I'd definitely like to remove the f to g conversion in trunk. I don't see any great need to open a separate issue fo

[issue7117] Backport py3k float repr to trunk

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: Found it: issue #5859 was opened for the removal of the f -> g conversion in py3k. We could just add a note to that issue. -- ___ Python tracker _

[issue1602] windows console doesn't print utf8 (Py30a2)

2009-10-26 Thread Glenn Linderman
Glenn Linderman added the comment: The choice of the Lucida Consola or the Consolas font cures most of the rectangle problems. Those are just a limitation of the selected font for the console window. -- ___ Python tracker

[issue7209] Prevents uint_t from being used on QNX

2009-10-26 Thread Matt Kraai
Matt Kraai added the comment: Here's an updated patch. The first time I forgot to regenerate pyconfig.h.in. -- Added file: http://bugs.python.org/file15203/define-_QNX_SOURCE.patch ___ Python tracker _

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-10-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: This latest patch (12) adds os.readlink(). Unfortunately, this causes more tests in test_posixpath.py to break. I'll continue to investigate. -- Added file: http://bugs.python.org/file15204/windows symlink draft 12.patch __

[issue1625] bz2.BZ2File doesn't support multiple streams

2009-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > That was mostly just out of paranoia, since the comments mentioned > multiple calls to close being legal. Looking at it again, that particular > case isn't an issue, since we don't hit that call when the mode is > MODE_CLOSED. The testsuite runs happily w

[issue7205] bz2file deadlock

2009-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- keywords: +patch Added file: http://bugs.python.org/file15205/bzthreads.patch ___ Python tracker ___ ___

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Chuck Rhode
New submission from Chuck Rhode : PythonTidy is a code beautifier written three years ago and downloaded numerous times. o http://lacusveris.com/PythonTidy/PythonTidy.python It suffers a bug, which has only recently come to light. It considers the following lines equivalent: if False is (2

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Michael Broghton
New submission from Michael Broghton : On FreeBSD and MacOS 64-bit systems the ident field of a kevent is big enough to hold a 64-bit integer (uintptr_t). Looks like Python is casting it to an unsigned 32-bit integer. This is inconvenient for implementing kqueue timers, where id(timer_obj) is a

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +christian.heimes, therve ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- priority: -> normal type: behavior -> feature request versions: +Python 2.7, Python 3.2 -Python 3.1 ___ Python tracker ___

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Please provided a unified diff against the trunk. -- nosy: +benjamin.peterson ___ Python tracker ___

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: Would you like to propose a patch? -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mai

[issue7071] distutils and IronPython compatibility

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: Done in trunk (r75669, and r75670 and r75671) and Py3k (r75704) and 3.1 (r75705). I'll push in 2.6 when the branch is unfrozen. Michael, could you create another issue for the access rights problems ? It'll be easier to track. Thanks! -- status: open

[issue7176] sum() doesn't work for lists.

2009-10-26 Thread Björn Augustsson
Björn Augustsson added the comment: On Tue, Oct 20, 2009 at 20:19, Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > One use of the start argument is used to specify an initial zero/metpy > value for the summation:  0  or  0.0   or Decimal(0)  or  []. That means it's basic

[issue7176] sum() doesn't work for lists.

2009-10-26 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Georg Brandl
Georg Brandl added the comment: FYI, /etc/pythonX.Y (and /etc/python) are used by Debian; the former contains site.py and sitecustomize.py, the latter a file called debain_config. I can't see how this could become a problem, but maybe someone else does. -- nosy: +georg.brandl

[issue7212] Retrieve an arbitrary element from a set without removing it

2009-10-26 Thread Willi Richert
New submission from Willi Richert : Sometimes, a non-removing pop() is needed. In current Python versions, it can achieved by one of the following ways: 1. x = some_set.pop() some_set.add(x) 2. for x in some_set: break 3. x = iter(some_set).next() More native and clean would, howev

[issue7212] Retrieve an arbitrary element from a set without removing it

2009-10-26 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger versions: +Python 2.7 -Python 3.1 ___ Python tracker ___ _

[issue7205] bz2file deadlock

2009-10-26 Thread Robert Collins
Robert Collins added the comment: On Mon, 2009-10-26 at 19:23 +, Antoine Pitrou wrote: > Antoine Pitrou added the comment: > > Here is a patch. Looks fine to me assuming that the locking functions can be used outside the GIL. On the test side, the case I supplied was low noise for me - I

[issue7117] Backport py3k float repr to trunk

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: r75730: backport pystrtod.h r75731: Fix floatobject.c to use PyOS_string_to_double. -- ___ Python tracker ___ __

[issue7212] Retrieve an arbitrary element from a set without removing it

2009-10-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Without tests, this patch is unacceptable. -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue7205] bz2file deadlock

2009-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Looks fine to me assuming that the locking functions can be used outside > the GIL. Yes, they can. Actually, even the GIL uses them. :-) > On the test side, the case I supplied was low noise for me - I'd > hesitate to do as much compression as you are (50 ti

[issue7203] fixer for map(None, ...) needs to consider multi-argument case

2009-10-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r75734. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue7165] xmlrpc.server assumes sys.stdout will have a buffer attribute

2009-10-26 Thread Nick Coghlan
Nick Coghlan added the comment: Fine by me (I was very close to changing the test when I first triggered the problem, but wasn't sure silencing the error was the right thing to do). Assigning back to myself to add a comment to the relevant line (i.e. that relying on the buffer attribute being p

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-10-26 Thread Jason R. Coombs
Changes by Jason R. Coombs : Removed file: http://bugs.python.org/file15198/windows symlink draft 11.patch ___ Python tracker ___ ___ Python

[issue7205] bz2file deadlock

2009-10-26 Thread Robert Collins
Robert Collins added the comment: On Mon, 2009-10-26 at 21:27 +, Antoine Pitrou wrote: > Antoine Pitrou added the comment: > Well, your test case often succeeded here, so I decided on a more > aggressive variation. fair enough, if its needed - its needed :) -Rob --

[issue7165] xmlrpc.server assumes sys.stdout will have a buffer attribute

2009-10-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Assigning back to myself to add a comment to the relevant line (i.e. > that relying on the buffer attribute being present is a deliberate > design choice). The remaining question, however, is why it doesn't also rely on stdin.buffer. --

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-10-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: This latest patch (13) addresses the regressions in test_posixpath.py by repeating a technique found in the new lstat. That is, if a handle can't be obtained for GetFinalPathNameByHandle (because the target is in use), it is assumed that the target does in fact

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-10-26 Thread Jason R. Coombs
Changes by Jason R. Coombs : Removed file: http://bugs.python.org/file15204/windows symlink draft 12.patch ___ Python tracker ___ ___ Python

[issue7202] "python setup.py MYCOMMAND --verbose" does not yield an unrecognized option error but also does not set the verbosity

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: There's this comment in dist.py: # All commands support the global options too, just by adding # in 'global_options'. So, that's a bug. I'll do this: - if a command has a global option (except help) it will be reapplied to the distribtuion object - if a command

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: Thanks for the info Georges. I am adding Matthias and Michael so they can give us their opinions for their platforms (Debian/Ubuntu and Win) -- nosy: +doko, michael.foord ___ Python tracker

[issue6992] PEP 314 inconsistency (authors/author/maintainer)

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: This discussion is taken to distutils-SIG, and a PEP 345 update is being worked out there. (look for 'RFC PEP 345' in Distutils archives) I am closing this issue and proposes that we continue there. -- status: open -> closed _

[issue7131] Extension module build fails for MinGW: missing vcvarsall.bat

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: Thanks for the feedback, this was detected as a regression and fixed in the upcoming 2.6.4 -- resolution: -> duplicate status: open -> closed ___ Python tracker _

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2009-10-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: The problem I'm encountering now is tests for posixpath.realpath are failing on Windows. These tests were previously skipped under Windows because there was no os.symlink. Now that Windows has os.symlink, these regression tests fail (test_realpath_basic, test_r

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Michael Foord
Michael Foord added the comment: Personally I'm uncomfortable with creating yet-another-location-for-config-files. As we now have is ~/.local/pythonX.Y I would reuse this. -- ___ Python tracker ___

[issue1054967] bdist_deb - Debian packager

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: I am closing this issue, since stdeb implements this command now. Also, I'd love to add it in the distutils documentation, but there's one issue. Andrew, do you think you could have a plain distutils version of this command ? Setuptools changes the Command and

[issue7207] test_telnetlib fails on OS X 10.6

2009-10-26 Thread Jack Diederich
Jack Diederich added the comment: Looks good and works for me, please check it in. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue6860] Inconsistent naming of custom command in setup.py help output

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: It's a bit more complicated. the option you are desrcibing it just one way to register commands in fact. Distutils also has a discovery function that will load commands from packages, and that's where the biggest issue is. -- versions: -Python 3.1

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Georg Brandl
Georg Brandl added the comment: But ~/.local is simply not the location for config files. -- ___ Python tracker ___ ___ Python-bugs-li

[issue7117] Backport py3k float repr to trunk

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: r75739: Fix complexobject.c to use PyOS_string_to_double. -- ___ Python tracker ___ ___ Python-bugs-

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Michael Broghton
Michael Broghton added the comment: I'm not sure how to patch this so that it will work on both 32 and 64 bit systems. Issues: 1. What would be an appropriate member type for ident in kqueue_event_members? It seems like T_PYSSIZET might work. Otherwise, I am guessing that this will involve some

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Michael Foord
Michael Foord added the comment: For Linux and Mac OS X put the config file wherever the 'right' place is then, but we are starting to create a lot of new directories disparate from the actual install. Oh well. On Windows we create: %APPDATA%/Python/PythonX.Y/site-packages If it is to no longe

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2009-10-26 Thread Michael Foord
Michael Foord added the comment: Noting of course that on IronPython it should be: %APPDATA%/IronPython/PythonX.Y/ or wherever we decided in the end. :-) -- ___ Python tracker _

[issue7206] 64 bit python fails on Windows 7

2009-10-26 Thread Rich Healey
Rich Healey added the comment: By running the python.exe (either by double clicking it, typing it's path into a cmd shell or by opening it in a debugger). I tried to create a 64 bit build of the source tree which DID start, but the hoops I had to jump through to build it with VC++ Express Editi

[issue7206] 64 bit python fails on Windows 7

2009-10-26 Thread Rich Healey
Rich Healey added the comment: Nope- 2.6.4 fails in the same way. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: > 1. What would be an appropriate member type for ident in > kqueue_event_members? It seems like T_PYSSIZET might work. Otherwise, I > am guessing that this will involve some #if's. IIUC, it needs to match *exactly* the field size inside struct kevent. So you'

[issue7207] test_telnetlib fails on OS X 10.6

2009-10-26 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Jack. Applied in r75741. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue7206] 64 bit python fails on Windows 7

2009-10-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: FWIW, these all run fine on my copy of Windows 7. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue7206] 64 bit python fails on Windows 7

2009-10-26 Thread Rich Healey
Rich Healey added the comment: They did at first for me, and then something changed. They now don't start. I don't have the skills to properly diagnose why, all I can get out of my debuggers is that something is happening in ntdll.dll Not necessarily pointing fault at Python per se, but as it'

[issue7213] Popen.subprocess change close_fds default to True

2009-10-26 Thread Milko Krachounov
New submission from Milko Krachounov : Currently, close_fds defaults to False. The are few cases in which one would want to leave the fds open, in all the rest leaving them open can lead to unpleasant side effects. For example, the following doesn't work: >>> p1 = Popen(['cat'], stdin=PIPE, stdo

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Chuck Rhode
Chuck Rhode added the comment: You mean like this? -- Added file: http://bugs.python.org/file15209/test_grammar.patch ___ Python tracker ___ _

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Chuck Rhode
Changes by Chuck Rhode : Removed file: http://bugs.python.org/file15209/test_grammar.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Chuck Rhode
Changes by Chuck Rhode : Removed file: http://bugs.python.org/file15206/test_grammar.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Chuck Rhode
Chuck Rhode added the comment: Well, the last two patch files weren't very good, but I hope the third time's the charm. -- Added file: http://bugs.python.org/file15210/test_grammar.patch ___ Python tracker

[issue7210] Proposed Syntax Checks in Test Suite

2009-10-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: That still looks like it's against Python 2.5. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue7214] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2009-10-26 Thread Brian
New submission from Brian : In the pure python ElementTree, the tag passed to the end() tag is verified to be closing the last tag opened (self._last). This cElementTree performs no such validation and closes the last tag regardless of what tag is passed to the method. In my mind this raises a

[issue7215] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2009-10-26 Thread Brian
New submission from Brian : In the pure python ElementTree, the tag passed to the end() tag is verified to be closing the last tag opened (self._last). This cElementTree performs no such validation and closes the last tag regardless of what tag is passed to the method. In my mind this raises a

[issue7215] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2009-10-26 Thread Brian
Changes by Brian : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue7211] select module - kevent ident field 64 bit issue

2009-10-26 Thread Michael Broghton
Michael Broghton added the comment: Martin, thanks for your responses. In regards to point three: Kqueue's are not just used for file descriptors. I believe this is the reason why the ident field is a uintptr_t and not an int. The example I gave was for kqueue timers. Since the operating syste

[issue7215] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2009-10-26 Thread R. David Murray
Changes by R. David Murray : -- priority: -> low resolution: -> duplicate stage: -> committed/rejected superseder: -> TreeBuilder.end(tag) differs between cElementTree and ElementTree ___ Python tracker ___