[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread Florent Xicluna
Florent Xicluna added the comment: +1 to force -bb on buildbots -1 to hack regrtest. IMHO it should be added to ./Makefile.pre.in and PCbuild/rt.bat, like other warning switches ( "-Wd" "-tt" "-3"). -- nosy: +flox type: -> feature request ___ Pyth

[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: > +1 to force -bb on buildbots I think that it's already enabled, but I'm not sure. > -1 to hack regrtest Does someone use runtests.sh? We should maybe improve this script instead of regrtest.py. -- ___ Python tr

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread Tarek Ziadé
Tarek Ziadé added the comment: The whole error handling in rmtree strikes me as something that cannot be used efficiently. (see also #7969). How can you decide in an isolated function, that can be called anywhere in the tree you want to remove, the proper thing to do ? You don't know the glob

[issue7834] socket.connect() no longer works with AF_BLUETOOTH L2CAP sockets

2010-04-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r80610. Thanks! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
New submission from Mark Dickinson : http://speleotrove.com/decimal/daexcep.html specifies a precedence for decimal exceptional conditions (scroll right to the bottom of the page): """The Clamped, Inexact, Rounded, and Subnormal conditions can coincide with each other or with other conditions.

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +facundobatista, rhettinger, skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue8568] Test issue

2010-04-29 Thread Mark Dickinson
New submission from Mark Dickinson : Test issue: I just got a 'there was a problem with your submission: tracker maintainers informed' message when submitting issue 8567, though it looks as though the submission succeeded. Here's a test issue to try to reproduce. Steps taken: Click on "Crea

[issue8568] Test issue

2010-04-29 Thread Mark Dickinson
Changes by Mark Dickinson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue7511] msvc9compiler.py: ValueError: [u'path']

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Some committers have been using 'resolution: accepted' as a way to mark issues that are definitely going to be fixed/enhancement added. For a critical bug I think this is a bit redundant (it is more useful for feature requests), but I'm pretty sure Tarek di

[issue4186] type() doesn't accept bases and dict keyword arguments

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Seems reasonable. -- nosy: +r.david.murray status: open -> closed ___ Python tracker ___ ___ Python

[issue2810] _winreg.EnumValue sometimes raises WindowsError ("More data is available")

2010-04-29 Thread R. David Murray
R. David Murray added the comment: How much would increasing the loop count slow down the test? Since if the bug isn't present the loop will run to the end every time, if it is non-trivial it would probably be better to keep it shorter, since Brian said it failed one way or another 9 out of

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread rubenlm
rubenlm added the comment: Do you really need the global status? I wrote an onerror that seems to works fine after I modified rmtree with the "return" suggested by r.david.murray. It assumes that: if os.listdir fails: the user doesn't have read permissions in the dir; if os.remove or os.rmdi

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Hi Andrew, Yes, I've played with sdist_dsc, and it's nice in that it takes a non-Debianized source tree and turns it into a source package that can be uploaded. What I'm looking for is something that can take a non-Debianized source tree and turn it into a

[issue8084] pep-0370 on osx duplicates existing functionality

2010-04-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'd prefer to have this resolved before the next 2.7 beta. -- ___ Python tracker ___ ___ Python-bug

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
Changes by Mark Dickinson : -- stage: -> unit test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread Tarek Ziadé
Tarek Ziadé added the comment: > /1 seems ok to me but to make use of the global status it provides > the user must write a somewhat complex recovery code. The onerror() code you did is as complex as a global function working with a sequence returned by rmtree, since it is used *everywhere* i

[issue8084] pep-0370 on osx duplicates existing functionality

2010-04-29 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7511] msvc9compiler.py: ValueError: [u'path']

2010-04-29 Thread Tarek Ziadé
Tarek Ziadé added the comment: Yes I used 'accepted' to mark this issue as something I am working on. I am confused about the resolution flag, I think it is a bit overlapping with the status flag, and overcomplex. Maybe we should replace "closed" with various flags like: "fixed", "wontfix",

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
Mark Dickinson added the comment: Regarding the flags that should be set, the relevant portion of the specification is at the top of the page mentioned above: """ For each condition, the corresponding signal in the context is given, along with the defined result. The value of the trap-enabler

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
Mark Dickinson added the comment: Raising priority: I'd like to get the precedence fix into 2.7. -- priority: normal -> high ___ Python tracker ___ _

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Antoine Pitrou
New submission from Antoine Pitrou : I don't know how official installers are built, but the standard build procedure with the Visual Studio files uses a custom checkout of OpenSSL 0.9.8l. OpenSSL is now at version 1.0.x, which adds security fixes and improvements. I'd suggest upgrade the "cu

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: http://www.openssl.org/news/secadv_20100324.txt http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555 New Windows builds of any versions of CPython which are still receiving security updates should be released. -- nosy: +exarkun priority: n

[issue7852] [PATCH] Drop "Computer" from "Apple Computer" in plistlib

2010-04-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: test failures have been fixed a while back. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue2810] _winreg.EnumValue sometimes raises WindowsError ("More data is available")

2010-04-29 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: In the updated patch I uploaded yesterday, I increased the loop count from 100 to 1000 and it still runs virtually instantly. I also added a comment stating that the test is trying to trigger a race condition. -- __

[issue8476] build-installer fix for setIcon when no script path specified

2010-04-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: The patch looks good, I will apply it over the weekend. Thanks for looking into this. -- ___ Python tracker ___ __

[issue8510] update to autoconf2.65

2010-04-29 Thread Matthias Klose
Matthias Klose added the comment: > You don't need to add source in case of > AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])] .. > when the the test is ..main() { return 0 ;} ... is there a version of the cross configure patch for 3.x? -- ___ Python tr

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Stefan Krah
Stefan Krah added the comment: Mark, I'm very short of time today, so I hope I don't miss anything that you wrote. The model of decNumber (and libmpdec) is to accumulate any status (flags) that occurs in a function, regardless of whether a signal is trapped or not. Only at function exit the

[issue8567] decimal module doesn't respect precedence rules for exceptional conditions

2010-04-29 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Stefan. The cdecimal and decnumber behaviour sounds like the ideal one to me. I'm not sure how easy it would be to adopt this behaviour for decimal: it could require some significant rewriting, so we may have to leave decimal as it is and call the f

[issue8540] Make Context._clamp public in decimal module

2010-04-29 Thread Stefan Krah
Stefan Krah added the comment: > Were you thinking of any deviations in particular? More or less a commentary on what is listed here: http://speleotrove.com/decimal/dascope.html ==> Restrictions I only have a draft of IEEE754, but for instance I can't find a power or remainder-near functi

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-29 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Matthias Klose wrote: > > Matthias Klose added the comment: > >> It's probably better to just pass OPT to the linker instead. > > not enough, because -fno-strict-aliasing might be passed in BASE_CFLAGS. Shouldn't -fno-strict-aliasing be added to OPT ins

[issue1644818] Allow built-in packages and submodules as well as top-level modules

2010-04-29 Thread Nick Coghlan
Nick Coghlan added the comment: OK, reassessing with brain fully engaged this time: the current patch is incorrect, and this request is more complicated than one might initially think :) It appears that since the patch was originally tried out only on Windows, a Modules/Setup based system ba

[issue1644818] Allow built-in packages and submodules as well as top-level modules

2010-04-29 Thread Nick Coghlan
Changes by Nick Coghlan : -- stage: needs patch -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue1644818] Allow built-in packages and submodules as well as top-level modules

2010-04-29 Thread Nick Coghlan
Nick Coghlan added the comment: Unassigning - this idea needs a lot more specification work to be done before actually implementing it becomes a good idea. (e.g. IronPython and Jython should be looked at to see how they handle the naming schemes in the standard libraries for their respective

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Well, I don't think removing the current onerror support is a viable option for backward compatibility reasons, so we might as well fix it. I agree that (2) sounds tricky to get reliably right, while I don't see how (1) is an improvement over onerror. It

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread rubenlm
rubenlm added the comment: Here is my current error handler: def handleRmtreeError(func, path, exc): excvalue = exc[1] if excvalue.errno == errno.EACCES: if func in (os.rmdir, os.remove): parentpath = path.rpartition('/')[0] os.chmod(parentpath, stat.S_IRWXU) # 0700 fu

[issue8442] Broken zipfile with python 3.2 on osx

2010-04-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I cannot reproduce this behavior on my MacBook running OSX 10.6.2. $ ./python.exe Lib/test/test_distutils.py ... -- Ran 168 tests in 3.850s OK (skipped=4) Also, cp437 appears to be a v

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread Tarek Ziadé
Tarek Ziadé added the comment: > Well, I don't think removing the current onerror support is a viable > option for backward compatibility reasons, > so we might as well fix it. The options could be deprecated since the new behavior would *return* errors. > Do you have some use cases in min

[issue8442] Broken zipfile with python 3.2 on osx

2010-04-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: There were some other build problems at the time, I haven't verified yet if the fixes for those problems also fixed this issue. I will do so over the weekend. -- ___ Python tracker

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-04-29 Thread Tarek Ziadé
Tarek Ziadé added the comment: Looking at your example rubenlm, it appears like a case that is missing in rmtree(). You are trying to chmod your tree if a file in there cannot be removed because of the permissions. This sounds like something we need to add in rmtree() directly, for example u

[issue8564] Update documentation on doctest/unittest2 integration

2010-04-29 Thread Michael Foord
Michael Foord added the comment: Looks like a good addition to the documentation to me. -- nosy: +michael.foord ___ Python tracker ___ ___

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Brian Curtin
Brian Curtin added the comment: Tools/buildbot/external-common.bat does the checkout of OpenSSL 0.9.8l from svn.python.org/projects/external. What does it take to put a new 1.x version out there? -- ___ Python tracker

[issue8552] msilib can't create large CAB files

2010-04-29 Thread Bill Janssen
Bill Janssen added the comment: Another bit of info. It's the frequent commits that seem to fix the problem; when I comment those out of the __del__ method, it fails as before. I also notice that the finished installer is about twice the size of the two data files in it (the CAB file and my

[issue8404] Set operations don't work for dictionary views

2010-04-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The patch looks fine. I verified that the new tests pass on trunk and py3k. I am attaching a patch for py3k with a forward port of set opereations and repr tests. -- nosy: +Alexander.Belopolsky Added file: http://bugs.python.org/file17127/issu

[issue8570] 2to3 crashes with "AttributeError: 'int' object has no attribute 'startswith'"

2010-04-29 Thread rom16384
New submission from rom16384 : The attached file crashes 2to3 with traceback: Traceback (most recent call last): File "/usr/bin/2to3", line 6, in sys.exit(main("lib2to3.fixes")) File "/usr/lib/python2.6/lib2to3/main.py", line 129, in main rt.refactor(args, options.write, options.doc

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am not sure fixing this quirk of %-formatting is worth the trouble given that one simply use new style {}-formatting: $ python-c 'import sys; print("{}.{}.{}-{}-{}".format(*sys.version_info))' 3.2.0-alpha-0 or a work-around $ python -c 'import sys; p

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-29 Thread Matthias Klose
Matthias Klose added the comment: my understanding is that the builder is allowed to overwrite OPT, but not BASE_CFLAGS. -- ___ Python tracker ___ __

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: Well, the problem is that it's a regression from 2.6. It also shows why these "fancy" structs aren't necessarily a good idea. I agree fixing in py3k is less important, though it would be nice too. -- nosy: +pitrou __

[issue8571] zlib causes a SystemError when decompressing a chunk >1GB

2010-04-29 Thread Denis Dmitriev
New submission from Denis Dmitriev : There's a bug in python's zlibmodule.c that makes it raise SystemError whenever it tries to decompress a chunk larger than 1GB is size. Here's an example of this in action: dmitr...@...:~/moo/zlib_bug> cat zlib_bug.py import zlib def test_zlib(size_mb):

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Eric Smith
Eric Smith added the comment: The other thing to do would be to convince PyTuple_Check that PyStructSequences are tuples, but that would no doubt come with its own set of regressions. Since this problem is 1) hard to fix and 2) probably of minimal impact, I think the best course is to do noth

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The recommended way to check that an object is an instance of a namedtuple is to check for the _fields attribute. See issue7796, msg99869. -- ___ Python tracker __

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Eric Smith
Eric Smith added the comment: Yes, but sys.version_info isn't a namedtuple (which are in fact tuples), it's the (sort-of) C equivalent, which isn't a real tuple. >>> from collections import namedtuple >>> x = namedtuple('x', 'a b c') >>> '%s %s %s' % x(1, 2, 3) '1 2 3' Hmm, but sys.version_in

[issue8464] tarfile creates tarballs with execute permissions set

2010-04-29 Thread Lars Gustäbel
Lars Gustäbel added the comment: I applied the patch and added a test case (see r80616-r80619). Thanks for the report. -- resolution: -> accepted stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue8557] subprocess PATH semantics

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Changing the default value of shell is not an option anyway. The behavior you describe is exactly what one should expect: the environment in which the executable is located is the environment of the process calling Popen, not the environment passed to Popen.

[issue8563] [PEP 3147] compileall.compile_file() creates empty __pycache__ directories for non-.py files

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thanks for finding this bug. I'm not sure about the second chunk of your diff (the one that removes __pycache__). In the future, it would help to include a unittest case that illustrates the problem. Here's a patch that includes a test for that specific p

[issue8563] [PEP 3147] compileall.compile_file() creates empty __pycache__ directories for non-.py files

2010-04-29 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: -> barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: IIRC, there is an open ticket to make structseq inherit from tuple to avoid just this kind of problem. -- ___ Python tracker ___ ___

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Eric Smith
Eric Smith added the comment: Looks like that's issue 1820. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8413] String interpolation doesn't work with sys.version_info

2010-04-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Thu, Apr 29, 2010 at 11:52 AM, Raymond Hettinger wrote: .. > IIRC, there is an open ticket to make structseq inherit from tuple to avoid > just this kind of problem. > Indeed, see issue1820. -- ___ Python

[issue8572] httplib getheader() does not work as documented

2010-04-29 Thread Walter Woods
New submission from Walter Woods : Calling HTTPResponse.getheader('Testabnew', 'Default') throws an exception rather than returning default, python 3.1.2. Problem code appears to be line 601 of client.py: def getheader(self, name, default=None): if self.headers is None:

[issue8563] [PEP 3147] compileall.compile_file() creates empty __pycache__ directories for non-.py files

2010-04-29 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Here's an example, which shows that an empty __pycache__ has been created: $ mkdir test $ echo ":" > test/file.py $ tree test test └── file.py 0 directories, 1 file $ python3.2 -c 'import compileall; compileall.compile_file("test/file.py")

[issue8572] httplib getheader() throws error instead of default

2010-04-29 Thread Walter Woods
Changes by Walter Woods : -- title: httplib getheader() does not work as documented -> httplib getheader() throws error instead of default ___ Python tracker ___

[issue8560] regrtest: add a minimal "progress bar"

2010-04-29 Thread R. David Murray
R. David Murray added the comment: -1 IMO it just makes the output messier and less readable, and I personally am fine with judging the progress by the filenames. -- nosy: +r.david.murray ___ Python tracker _

[issue5559] IDLE Output Window 's goto fails when path has spaces

2010-04-29 Thread R. David Murray
R. David Murray added the comment: I think the issue is still open waiting for a unit test. On the other hand, how likely is it that someone is going to write one at this point? If someone doesn't speak up soon I think you can close it. -- nosy: +r.david.murray

[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread R. David Murray
R. David Murray added the comment: There are currently (at least) two places where regrtest is invoked by the buildbots, one for unix and one for windows. The flags used are not always in sync, but probably should be. I think it is probably better to not hack regrtest for this, since that wo

[issue8571] zlib causes a SystemError when decompressing a chunk >1GB

2010-04-29 Thread Denis Dmitriev
Denis Dmitriev added the comment: Alright, I think this is caused by the following: static PyObject * PyZlib_objdecompress(compobject *self, PyObject *args) { int err, inplen, old_length, length = DEFAULTALLOC; int max_length = 0; The problem is that inplen, length, old_length, and max

[issue7079] file_close() ignores return value of close_the_file

2010-04-29 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Removed file: http://bugs.python.org/file15076/fileobject.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue7079] file_close() ignores return value of close_the_file

2010-04-29 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Removed file: http://bugs.python.org/file15077/crash.py ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8084] pep-0370 on osx duplicates existing functionality

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Since you want it before the next beta, I'm promoting it to release blocker. Benjamin can reduce it if needed when we get down to the wire. -- nosy: +r.david.murray priority: high -> release blocker ___ Python tra

[issue7079] file_close() ignores return value of close_the_file

2010-04-29 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Added file: http://bugs.python.org/file17130/file_close_test.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue7079] file_close() ignores return value of close_the_file

2010-04-29 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Added file: http://bugs.python.org/file17131/file_close.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue7079] file_close() ignores return value of close_the_file

2010-04-29 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: I reworked my test script into a unit test. Thanks for pointing me to test_file2k.py. I leveraged the infrastructure that was already there. I've also uploaded a new patch that uses tabs instead of spaces, to match the rest of fileobject.c. -- st

[issue8552] msilib can't create large CAB files

2010-04-29 Thread Bill Janssen
Bill Janssen added the comment: Ah, found the size problem -- I was measuring something in 512 blocks not 1KB blocks. Never mind. -- ___ Python tracker ___

[issue8570] 2to3 crashes with "AttributeError: 'int' object has no attribute 'startswith'"

2010-04-29 Thread R. David Murray
Changes by R. David Murray : -- nosy: +benjamin.peterson type: crash -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ _

[issue808164] socket.close() doesn't play well with __del__

2010-04-29 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: How do I write a unit test to check that socket.__del__ doesn't refer to any globals? -- ___ Python tracker ___ ___

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2010-04-29 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue2715] Remove carbon-specific code from binhex

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would close this, but I am not sure what the resolution should be. -- nosy: +tjreedy status: pending -> open ___ Python tracker ___ __

[issue770280] PyMarshal_ReadLastObjectFromFile

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can this be closed as either out-of-date or rejected? -- nosy: +tjreedy status: pending -> open ___ Python tracker ___ ___

[issue3328] When PyObject_CallMethod fails, refcount is incorrect

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue3536] case conversion problems in Turkish

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue3957] [contextlib] Reverse order of locking

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue4262] import and compile() do not treat trailing whitespace the same

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue3433] Mac, 3.0 framework install error with fink cp

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue4025] C99 comments in Python 2.6 break build on AIX 6.1

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the absence of further complaints, this appears to really be fixed. Should it be closed as such? -- nosy: +tjreedy status: pending -> open ___ Python tracker __

[issue770280] PyMarshal_ReadLastObjectFromFile

2010-04-29 Thread Mark Dickinson
Mark Dickinson added the comment: I think this is superseded by issue 7332, which is now fixed in trunk (but not in 2.6). -- nosy: +mark.dickinson, pitrou resolution: remind -> out of date status: open -> closed superseder: -> python script segment fault at PyMarshal_ReadLastObjectFro

[issue1178510] configure: refuses setgroups

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Closing this pending 2.4 Irix issue as out of date. Martin, reopen if you object. -- nosy: +tjreedy resolution: -> out of date status: pending -> closed ___ Python tracker

[issue5407] Broken Py3.1 release build in Visual Studio 2005

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue5494] Failure in test_httpservers on Linux

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue785031] MacPython installer fails on UFS filesystem

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue1004810] Carbon.File fails if server vol is mounted after launch

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue2715] Remove carbon-specific code from binhex

2010-04-29 Thread Mark Dickinson
Mark Dickinson added the comment: Closing as fixed. -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue2715] Remove carbon-specific code from binhex

2010-04-29 Thread Mark Dickinson
Changes by Mark Dickinson : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1473979] test test_capi crashed -- thread.error: can't allocate lock

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue658693] cPickle does relative import

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue2016] Crash when modifying the **kwargs passed to a function.

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is everything fixed, so this can be closed? -- nosy: +tjreedy status: pending -> open ___ Python tracker ___ ___

[issue1367628] use PyOS_ReadlineFunctionPointer in non-interractive input

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1027] uudecoding (uu.py) does not supprt base64, patch attached

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue8570] 2to3 crashes with "AttributeError: 'int' object has no attribute 'startswith'"

2010-04-29 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue6788] codecs.open on Win32 does not force binary mode

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue6883] OptionParser.allow_interspersed_args is undocumented

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Skip, can we close this? -- nosy: +tjreedy status: pending -> open ___ Python tracker ___ ___ Python

  1   2   >