[issue8575] Update/reorganize _winreg documentation

2010-04-29 Thread Brian Curtin
New submission from Brian Curtin : This patch cleans up the use of a few external MSDN links, adds a bunch of constants which were previously undocumented, and reorganizes a table to fit in with those constants. Patch uploaded to http://codereview.appspot.com/969045 for review. -- ass

[issue8557] subprocess PATH semantics

2010-04-29 Thread Dave Abrahams
Dave Abrahams added the comment: I wrote a Python script (enclosed) to methodically test how these things work, that doesn't rely on peculiarities of sys.executable. The tests did reveal some notable differences on *nix and 'doze: * When shell=False on windows you must launch the process usi

[issue4180] warnings.simplefilter("always") does not make warnings always show up

2010-04-29 Thread Tres Seaver
Tres Seaver added the comment: The attached patch fixes the OP's use case on the Python side by re-ordering the tests, such that "always" prevents the short-circuit from firing:: $ ./python Python 2.6.5+ (release26-maint, Apr 29 2010, 21:24:12) [GCC 4.3.3] on linux2 Type "help", "copyrig

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

2010-04-29 Thread Senthil Kumaran
Senthil Kumaran added the comment: On Fri, Apr 30, 2010 at 01:56:01AM +, R. David Murray wrote: > > I seem to have been missing some context here. I was referring to Walter's comment on default being an int, like HTTPResponse.getheader('Fake-Content-Length',default=42). It was surprising

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: I seem to have been missing some context here. I now understand that this is a regression relative to Python 2.x. It seems to me that the translation from rfc822.Message to email.Message was done incorrectly. In the 2.x code getheader returns only the val

[issue775964] fix test_grp failing on RedHat 6.2

2010-04-29 Thread Tres Seaver
Tres Seaver added the comment: I don't have a host where I actually use netgroups in /etc/groups, and so can't provoke the bug:: $ hg branch release26-maint $ make ... $ ./python -E -tt Lib/test/regrtest.py test_grp test_grp 1 test OK. I can verify that the patch still applies t

[issue8390] tarfile: use surrogates for undecode fields

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: lars: Do you have an opinion about this suggestion? -- ___ Python tracker ___ ___ Python-bugs-list m

[issue8559] test_gdb: test_strings() fails with ASCII locale

2010-04-29 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17139/test_gdb_unicode.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue8559] test_gdb: test_strings() fails with ASCII locale

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: > The test should ask gdb for its sys.maxunicode value. Ok, done in a new version of the patch. test_gdb now pass with and without locale (utf8 and ascii). The patch is for py3k. test_gdb in Python trunk doesn't test has the unicode tests in test_strings() f

[issue8559] test_gdb: test_strings() fails with ASCII locale

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: Patch using raw string instead of the unicode character directly to avoid the locale issue. I'm not sure that we really test unicode support of the gdb library using my patch. I also get another error: << AssertionError: "'U0001D121'" did not equal expec

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

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: Higher/lower bounds for me: - Quad core @ 2.5 GHz with -j4: 2 min 40 sec - Pentium4 @ 3 GHz (hyperthreading) without -j: 11 min 21 sec Sometimes I forget to use -j, and sometimes I cannot use it (eg. see my last patches to support --without-threads ;-)). Wh

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

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: > I personally am fine with judging the progress by the filenames The new displayed test names only inform you that regrtest is not blocked, but you don't know how many tests remain if: - you use -j option (which shuffle the list at little bit) - you use -r

[issue8499] Set a timeout in test_urllibnet

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: Patch to use transient_internet() context manager: the patch requires transient_internet-xxx.patch of issue #8574. -- dependencies: +transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure keywords: +patch Adde

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17136/transient_internet-2.patch ___ Python tracker ___ ___ Python-bugs-li

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: Version 3 to prepare a patch for #8499: don't change socket default timeout if the timeout argument is None. -- Added file: http://bugs.python.org/file17137/transient_internet-3.patch ___ Python tracker

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: See also issue #8499. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue8499] Set a timeout in test_urllibnet

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: See also issue #8574. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17134/transient_internet.patch ___ Python tracker ___ ___ Python-bugs-list

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: Oops, transient_internet.patch doesn't catch socket.error(errno.ETIMEDOUT, ...). Fixed by patch version 2. -- Added file: http://bugs.python.org/file17136/transient_internet-2.patch ___ Python tracker

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
Changes by STINNER Victor : Added file: http://bugs.python.org/file17135/test_robotparser_transient_internet.patch ___ Python tracker ___ ___

[issue8574] transient_internet() (test_support): use socket.setdefaulttimeout() and test_robotparser failure

2010-04-29 Thread STINNER Victor
New submission from STINNER Victor : Many tests of the Python test suite depends on the availability of websites, especially www.python.org. Python.org has some troubles since some days, and many buildbots failed (test_robotparser failure). I propose to use a default timeout of 60 seconds in t

[issue1641] asyncore delayed calls feature

2010-04-29 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Assuming this is still desirable I'd really like to move forward with this issue. The current situation is that we have two patches. My patch pros: * affects asyncore.py only * (imho) cleaner, as it just adds one class * stable, as it has been

[issue1285086] urllib.quote is too slow

2010-04-29 Thread Tres Seaver
Tres Seaver added the comment: I'm uploading a saner version of the speed test which uses timeit's support for passing a callable as a statement: it is much easier to see what the test is actually doing. On my machine, running against the release26-maint branch, my version runs anywhere from

[issue8573] Buggy _strerror in asyncore

2010-04-29 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Good catch. I modified your patch a little bit including a catch for OverflowError exception and a last attempt to look up into errno.errorcode: def _strerror(err): try: return strerror(err) except (ValueError, OverflowError): if err

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

2010-04-29 Thread Walter Woods
Walter Woods added the comment: Little more info: The actual snippet from couchdb-python is: if int(resp.getheader('content-length', sys.maxsize)) < CHUNK_SIZE: Which should be valid python . . . calling int() on an integer should work, and calling int() on a string expected to be an integ

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Éric, sorry about missing that accent. /me needs a bigger font. :) RE: python-debian modernization. We'd have to check with the authors to see what version of Python they need to remain compatible with. If it's 2.6, then I'm all for modernizing. I'm not

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

2010-04-29 Thread Walter Woods
Walter Woods added the comment: couchdb-python makes http requests, yes. Passing in a number might be mildly inappropriate, BUT I'd like to point out that the default might be used to find out if the header is not set (hence its default value of None). It should not assume that a string

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

2010-04-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: Thanks for the report. Fixed in r80637. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: @senthil: I'm not quite sure what your sentence referencing couchdb is getting at, but the headers that are being queried are in an email.Message object, and contain only string values unless some code is misusing the API and setting new non-string values af

[issue8573] Buggy _strerror in asyncore

2010-04-29 Thread R. David Murray
Changes by R. David Murray : -- nosy: +giampaolo.rodola, josiahcarlson type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-l

[issue8543] asynchat documentation issues

2010-04-29 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: As per discussion with Josiah I'm leaving fifo class alone as it can still be used also with the newer producer_fifo implementation (changed in Python 2.6). The other changes described in my comments above still hold. Committed in r80631 (2.7), r80632 (2.6),

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

2010-04-29 Thread Senthil Kumaran
Senthil Kumaran added the comment: And also, the code which is using getheader of HTTPResponse object would mostly (but incorrectly in py3k) be passing a string as default. The HTTP headers have been a dict with key,values as strings. Counchdb-python - does this make HTTP reqs? I am not sure

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: No, because my code is a backward compatibility hack. Currently if someone is passing a default successfully they must be doing it by passing in a list or tuple consisting of one or more strings. So your code would result in something like: >>> ', '.joi

[issue1155] Carbon.CF memory management problem

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- priority: critical -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue2091] file accepts 'rU+' as a mode

2010-04-29 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 2.7 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8569] Upgrade OpenSSL in Windows builds

2010-04-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: IIUC, Python is not affected by this security issue. 'short' is a 16-bit integer, so it only affects 0.9.8m, which isn't being used by Python. Therefore, from a security point of view, no action needs to be taken. I don't think upgrading OpenSSL is appropria

[issue8573] Buggy _strerror in asyncore

2010-04-29 Thread Longpoke
New submission from Longpoke : This function in asyncore is buggy: def _strerror(err): res = os.strerror(err) if res == 'Unknown error': res = errorcode[err] return res - os.strerror may throw ValueError depending on the os, or return a string saying something like: "Unknow

[issue2091] file accepts 'rU+' as a mode

2010-04-29 Thread Tres Seaver
Tres Seaver added the comment: I can confirm that: - the patch applies cleanly to the release26-maint branch, with the exception of the Misc/NEWS portion:: $ hg branch release26-maint $ ./python -E -tt Lib/test/regrtest.py test_file test_file 1 test OK. $ patch -p0 < /tmp/issue20

[issue2211] Cookie.Morsel interface needs update

2010-04-29 Thread R. David Murray
R. David Murray added the comment: This looks like it would be a worthwhile cleanup, and the issue contains useful info to that end, so I'm marking it languishing rather than closing it, in the hopes that someone will pick it up some day. I also think this could be a nice bug day task for so

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Éric Araujo
Éric Araujo added the comment: Barry, IIUC you want the “debian” command to create a debian source package, which can be converted to debian binary package(s), checked and uploaded with standard tools. Perfect. Andrew, I am uncomfortable with stdeb. (Trying to express respectful constructive cr

[issue7865] io close() swallowing exceptions

2010-04-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: > But maybe this is not so important, as these are programming errors > anyway. Agreed :) > One thing I'm still wondering : why couldn't we obtain these C > extension by cythonizing _pyio ? Are there features that cython lacks, > or optimization consideration

[issue7584] datetime.rfcformat() for Date and Time on the Internet

2010-04-29 Thread Daniel Urban
Daniel Urban added the comment: > I do not think that -00:00 or +00:00 will be invalid Atom timestamp, > but to implement parser of rfc3339 timestamp, Z handling is still > needed. I can easily imagine people making wrong assumption that > parsing 00:00 at the end would be enough for proper roun

[issue7865] io close() swallowing exceptions

2010-04-29 Thread Pascal Chambon
Pascal Chambon added the comment: Here is a code/test patch which *should* fix the multiple close() case, and ensure flush() raise an error on closed file. All IO test suites pass on my win32 (except test_largefile that I skip due to lack of hdd space). I've noticed that the detach() seman

[issue1155] Carbon.CF memory management problem

2010-04-29 Thread hhas
hhas added the comment: The Carbon extensions are deprecated in Python 2.6 and absent in Python 3, and PyObjC provides a far better alternative. I'd be surprised if this issue affects any users at this point (chances are I'm the only one who was ever bothered by it, and I eliminated all Carbo

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Eric, you're right, "native" isn't exactly what I was getting at. I want the debian/ directory created right next to the setup.py, as I've described in some follow ups. As far as what you see in setupdebian, this is just preliminary experiments using test-

[issue1343] XMLGenerator: nice elements

2010-04-29 Thread Éric Araujo
Éric Araujo added the comment: I added the “needs review” keyword, to make this easy to find for reviewers, changed the version (new features don’t go in older versions; check if your patches still apply), and added MvL as nosy, since he’s listed as expert for the xml package in py3k/Misc/mai

[issue7865] io close() swallowing exceptions

2010-04-29 Thread Pascal Chambon
Changes by Pascal Chambon : Removed file: http://bugs.python.org/file17077/no_swallow_on_close2.patch ___ Python tracker ___ ___ Python-bugs-li

[issue1343] XMLGenerator: nice elements

2010-04-29 Thread Ken Ganong
Ken Ganong added the comment: This bug is tagged as easy and appears to already have a patch and a test posted from two years ago. What is still to be done here? -- nosy: +ken.ganong ___ Python tracker ___

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Éric Araujo
Éric Araujo added the comment: 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 native package, essentially by pre-filling a debian/ directory like dh_make does, but including additional

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Manual moving/copying is what I want to avoid. I'd be totally happy with not reinventing the wheel if you think this would be easy to add to stdeb! Specifically: just create debian/ in place and do not build package. I have a few other minor suggestions, t

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Andrew Straw
Andrew Straw added the comment: I see. So is copying the debian/ directory into its desired location a possibility for you, either manually or via a new distutils commands that shares 99% of its code with sdist_dsc? It doesn't seem like enough of a difference to start a new project.

[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: I think that compilation of a single file should try to be an atomic operation, which doesn't leave an empty directory after failure. -- ___ Python tracker __

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

2010-04-29 Thread Walter Woods
Walter Woods added the comment: David: Your example tests specifically for a string, but what about just converting default to a string always if it's not a list? Otherwise the string join is just going to fail anyway (suppose an integer is passed, which is the case with couchdb-python). Wo

[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: Hmm. In that case, I think you'd be expecting possible errors and would either have to clean up __pycache__ yourself or turn on legacy mode. -- ___ Python tracker __

[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: compileall might be used to check if given package supports Python 3. There can be many .py files and all of them can contain syntax specific to Python 2. -- ___ Python tracker

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Hi Andrew, I want debian/ to be created in . (aka, cwd, the directory containing setup.py), not in ./deb_dist/package-version -- ___ Python tracker __

[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: r80626 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[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: I guess I don't see the point in removing __pycache__ when the only .py file in the package directory has a SyntaxError. I think that will be a rare case. Won't there usually be other .py files that compile just fine? -- ___

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

2010-04-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: I agree that the priority is higher now that we have a demonstrable regression. Getting structseq to subclass from tuple will take some effort (tuples have many methods that would need to be overriden). -- priority: low -> normal _

[issue6883] OptionParser.allow_interspersed_args is undocumented

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Since he hasn't proposed a patch, we close it :) Skip can always reopen it if he wants. -- nosy: +r.david.murray status: open -> closed ___ Python tracker ___

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: It was merged to py3k in r73623, 3.1 in r73625, but not, as far as I can see, to 2.6. -- nosy: +r.david.murray stage: patch review -> commit review versions: -Python 2.5, Python 2.7, Python 3.0, Python 3.1 ___ Pyt

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

2010-04-29 Thread Eric Smith
Eric Smith added the comment: See also issue 8413, which would be addressed by this change. -- ___ Python tracker ___ ___ Python-bugs-

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Andrew Straw
Andrew Straw added the comment: Barry, I'm sorry I still don't understand what you think is the essential distinction. A debian source package (.dsc, .orig.tar.gz, and .diff.gz files) is simply made from a (patched) source directory, including the debian/ directory, and an upstream tarball. T

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

2010-04-29 Thread Senthil Kumaran
Senthil Kumaran added the comment: Walter, have a look at http://www.python.org/dev/ document. It is really easy and attach it when its ready. 1) Create a patch against trunk (or py3k). 2) Patch against trunk/ or (py3k/ if its py3k only) 3) Lib/test/test_httplib.py might have similar tests, so

[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: __pycache__ directory could be removed only when os.mkdir(cache_dir) has succeeded. Empty __pycache__ directory existing before call to compileall.compile_file() wouldn't be removed. -- ___ Pyt

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: Sure. It can always be reopened if the OP comes back and says it isn't fixed. I'm closing it out of date because there are no references to checkins that fixed it. -- nosy: +r.david.murray resolution: -> out of date stage: -> committed/rejected s

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

2010-04-29 Thread Walter Woods
Walter Woods added the comment: Good point. Yeah, I could do that within a week or two at the latest. Just attach a .patch here when done? And, what should the base be for the patch . . . the Lib/http directory? Never submitted anything to python before. -- __

[issue6306] filecmp.cmp can not compare two files from different OS with the same content

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

[issue2571] cmd.py always uses raw_input, even when another stdin is specified

2010-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Too late for new 2.7 features. -- nosy: +tjreedy resolution: -> out of date status: pending -> closed ___ Python tracker ___ __

[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: Hmm. I'm not sure that getting a SyntaxError is grounds for removing the __pycache__ directory. I think I will commit the fix without that change. -- ___ Python tracker

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

2010-04-29 Thread R. David Murray
R. David Murray added the comment: For backward compatibility this would have to be something more like: if not isinstance(default, list): if isinstance(default, string): default = [default] else: default = list(default) return ', '.join(self.header

[issue1155] Carbon.CF memory management problem

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

[issue1756343] Python 2.5.1 fails to build on AIX

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue6941] Socket error when launching IDLE

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ 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

[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:/

[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://

[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:/

[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://

[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

[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 ___ ___

[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:

[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

[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

[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

[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

[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:

[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://

[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://

[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

[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

[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 __

[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://

[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://

[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://

[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://

[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://

[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 ___ ___

[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 ___ __

  1   2   >