[issue9665] Buid issues on Cygwin - _curses, _curses_panel, and _io

2012-05-28 Thread Arif Widi Nugroho
Changes by Arif Widi Nugroho : -- nosy: +arifwn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14948] setup.cfg - rename home_page to homepage

2012-05-28 Thread anatoly techtonik
New submission from anatoly techtonik : home_page is too conservative, ugly and requires more time typing. "home page" is also 2.15 times less popular that "homepage" spelling http://www.google.com/trends/?q=%22home+page%22,+%22homepage%22 Writing setup.cfg files for humans should be simple an

[issue14947] Missing cross reference in types.new_class documentation

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : The http://docs.python.org/dev/library/types#dynamic-type-creation docs should have a see also ref to the main class creation docs in the language reference. Just a reminder to myself so I don't forget to fix it. -- assignee: ncoghlan components: Docu

[issue14942] add PyType_New()

2012-05-28 Thread Eric Snow
Eric Snow added the comment: Yeah, I'd meant that as an illustration of what I'd understood, rather than some other proposal for the C API. types.new_class looks really handy. Thanks for clarifying. -- ___ Python tracker

[issue3177] Add shutil.open

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: (A last, very minor thing: please trim or remove quoted text when replying with the email interface (or on mailing lists); it puts unneeded wall of texts that reader waste time scanning, in case there were inline replies. Thanks in advance.) -- __

[issue3177] Add shutil.open

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: Note that my suggestion has an inconvenient on Windows. Take the example of HTML files; on an UNIX system I would decide whether I want them to be opened with my text editor or my web browser; I’d choose web browser because I launch my text editor from a shell.

[issue3177] Add shutil.open

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: The latest discussion on this thread does not match my UNIX user model. tl;dr: shutil.whatever should call startfile(..., 'edit') or xdg-open; other actions implemented by startfile are not cross-platform. > Well, so how about on UNIX shutil.launch (or whatever

[issue14942] add PyType_New()

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: No, I mean no new C API at all. Anyone that wants to dynamically create a new type from C in 3.3 can already just write their own code to make the appropriate types.new_class() call: http://docs.python.org/dev/library/types#types.new_class A simple example, ig

[issue14942] add PyType_New()

2012-05-28 Thread Eric Snow
Eric Snow added the comment: And unless there were some performance reason, I agree that the route I took in the patch is overkill. -- ___ Python tracker ___ __

[issue14942] add PyType_New()

2012-05-28 Thread Eric Snow
Eric Snow added the comment: Presumably you mean something like this: PyObject * PyType_New(PyObject *name, PyObject *bases, PyObject *ns) { PyObject *type, *args, *newtype; PyInterpreterState *interp = PyThreadState_GET()->interp; PyObject *modules = interp->modules; PyObject

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2012-05-28 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14939] Usage documentation for pyvenv

2012-05-28 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14946] packaging’s pysetup script should be named differently than distutils2’s pysetup

2012-05-28 Thread Éric Araujo
Changes by Éric Araujo : -- title: packaging’spysetup script should be named differently than distutils2’s pysetup -> packaging’s pysetup script should be named differently than distutils2’s pysetup ___ Python tracker

[issue14946] packaging’spysetup script should be named differently than distutils2’s pysetup

2012-05-28 Thread Éric Araujo
New submission from Éric Araujo : The whole point of naming distutils2 “packaging” in the standard library is to avoid name conflicts in case someone wants to import a distutils2 version from site-packages that’s newer than the packaging version in the standard library. However the main comma

[issue12510] IDLE get_the_calltip mishandles raw strings

2012-05-28 Thread Roger Serwy
Roger Serwy added the comment: Which comment needs revision? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: I think for these it's reasonable to just have an index page that references out to the individual module docs. Most of them are closely related to using the module in your own code and/or there's general background info in the module docs that you're likely to

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2012-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Hmm, how did I miss that?? Well better to reference that, and maybe revise it. I believe there may also be another .txt document in idlelib. Anyway, perhaps there should first be a section on tkinter by itself, and how to get the tcl/tk it depends on. Mention

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2012-05-28 Thread Ned Deily
Ned Deily added the comment: http://docs.python.org/py3k/library/idle.html (duplicates much of the IDLE help file) -- nosy: +ned.deily ___ Python tracker ___ __

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2012-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I second the motion for IDLE. There is no module doc for it. Off the top of my head, there should be a general section that * says what it is, and that it depends on tcl/tk and tkinter install; * mentions the existent of the menu Help / IDLE help document; * gi

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: I’d propose to add one file per script / module-as-script, except maybe for -m site and -m sysconfig which are more about debugging an installation than really using a feature provided by the stdlib. -- nosy: +eric.araujo ___

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-28 Thread Eli Bendersky
Eli Bendersky added the comment: Committed all fixes in http://hg.python.org/cpython/rev/7d252dbfbee3 -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7d252dbfbee3 by Eli Bendersky in branch 'default': Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. http://hg.python.org/cpython/rev/7d252dbfbee3 -- ___ Python tracker

[issue14942] add PyType_New()

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: I realised that with the addition of types.new_class(), that's fairly easy to invoke from C (no harder than any other Python function, anyway). Thus, no need to duplicate the functionality directly in the C API. -- resolution: -> rejected status: open

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: Additional candidates after grepping the docs: python -m site python -m sysconfig python -m pickle python -m pickletools python -m compileall python -m test -- ___ Python tracker _

[issue3177] Add shutil.open

2012-05-28 Thread Hobs
Hobs added the comment: Then they or we can add Konqueror, etc to the options that are 'try'ed for the 'view' option. Worst case they get a terminal cat of the file instead of an error message or unintended action (like running a script). What exactly are you proposing to do when execute is Fals

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: Same goes for idle and 2to3. These may just be cross-references to the relevant module documentation rather than completely new text. -- title: Setup & Usage documentation for pydoc -> Setup & Usage documentation for pydoc, idle & 2to3

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: Found it: #11260. I've left it open, since the original suggestion in that issue is related to actually documenting the -m behaviour of the smptd module - it was just the issue *discussion* that ended up covering the more general question of how such command li

[issue11260] smtpd-as-a-script feature should be documented and should use argparse

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: I created #14945 as a suggestion to add a simple page to http://docs.python.org/dev/using/index.html that will provide a central reference to the module documentation for modules with officially supported behaviour when used with the "-m" switch. -- no

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: I'm sure there's a predecessor to this issue that I intend for this one to replace, but I can't currently find it in order to mark it as superceded. -- ___ Python tracker _

[issue14945] Setup & Usage documentation for selected stdlib modules

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : Some stdlib modules have officially documented and supported behaviour when executed via -m. These should be referenced from the Setup & Usage documentation at http://docs.python.org/dev/using/index.html Current candidates: python -m unittest python -m timeit

[issue14944] Setup & Usage documentation for pydoc

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : pydoc is installed as a script by Python. It should be documented under http://docs.python.org/dev/using/index.html. -- assignee: docs@python components: Documentation messages: 161831 nosy: docs@python, ncoghlan priority: normal severity: normal stage

[issue14940] Usage documentation for pysetup

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: See my reply on #14939. We need to start getting command line usage information *out* of the standard library reference and documenting it here. -- ___ Python tracker _

[issue14942] add PyType_New()

2012-05-28 Thread Nick Coghlan
Changes by Nick Coghlan : -- Removed message: http://bugs.python.org/msg161829 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue14942] add PyType_New()

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: See my reply on #14939. We need to start getting command line usage information *out* of the standard library reference and documenting it here. -- nosy: +ncoghlan ___ Python tracker

[issue12510] IDLE get_the_calltip mishandles raw strings

2012-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am reopening just as a reminder to revise the comment. -- status: closed -> open ___ Python tracker ___ _

[issue14939] Usage documentation for pyvenv

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: No, we need to start using the Setup & Usage docs *more*, not less. All tools with useful command line behaviour (especially those that are directly installed as scripts) should eventually be documented here. The fact this has historically been avoided is no ex

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Ronan Lamy
Ronan Lamy added the comment: Grmf. I didn't mean to change the status. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Ronan Lamy
Ronan Lamy added the comment: my_pkg.__init__ isn't treated as just another module but as a package. That is the reason why the bogus my_pkg.__init__.module1 is created, I guess: >>> import sys >>> sorted(name for name in sys.modules if name.startswith('my_')) [] >>> import my_pkg.__init__ >>>

[issue14895] test_warnings.py EnvironmentVariableTests is a bad test

2012-05-28 Thread Frank Wierzbicki
Changes by Frank Wierzbicki : -- nosy: +fwierzbicki ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue14939] Usage documentation for pyvenv

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: I would document it in library/venv, just like other tools are documented in the relevant module docs. I’m nonetheless +1 to listing all scripts installed by Python in the Setup and Usage docs, with links. -- nosy: +eric.araujo

[issue12932] dircmp does not allow non-shallow comparisons

2012-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Lennart, I saw your response on StackOverflow ;-). -- nosy: +terry.reedy resolution: out of date -> stage: committed/rejected -> test needed status: closed -> open versions: +Python 3.3 -Python 2.6, Python 2.7 ___ P

[issue14943] winreg OpenKey doesn't work as documented

2012-05-28 Thread Glenn Linderman
New submission from Glenn Linderman : My first time to use winreg and I am sure that some of this report is documentation, but depending on behavior in other versions, maybe it is a regression in code as well, but I doubt it. I'm reading the 3.3 documentation, but using 3.2.3 for testing. The

[issue14940] Usage documentation for pysetup

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: I agree the doc needs work (I have a patch in progress), but don’t think it should be in “Python Setup and Usage” any more than pydoc or 2to3 or -m unittest, so suggest this be closed in favor of #12779. -- ___ Python

[issue14942] add PyType_New()

2012-05-28 Thread Eric Snow
Changes by Eric Snow : -- components: +Interpreter Core type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue14942] add PyType_New()

2012-05-28 Thread Eric Snow
New submission from Eric Snow : Nick Coghlan suggested[1] exploring an easier spelling for "type(name, (), {})" in the C API. I've attached a patch that adds a function that does so: _PyType_New(). It's "private" in the patch, but only because I am reticent to expand the API without solid fe

[issue14668] Document the path option in the Windows installer

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: See #14941 for a couple of other issues I noticed with the current Windows docs (specifically, -m means finding the stdlib location could probably be de-emphasised and the docs on compiling should be replaced with a reference to the devguide) -- nosy:

[issue14941] "Using Python on Windows" end user docs are out of date

2012-05-28 Thread Nick Coghlan
Changes by Nick Coghlan : -- superseder: -> Document the path option in the Windows installer ___ Python tracker ___ ___ Python-bugs-

[issue14941] "Using Python on Windows" end user docs are out of date

2012-05-28 Thread Brian Curtin
Brian Curtin added the comment: #14668 -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___ Python-bugs-lis

[issue14941] "Using Python on Windows" end user docs are out of date

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : The following docs should be updated based on the automatic PATH manipulation in the updated installer: http://docs.python.org/dev/using/windows.html#using-python-on-windows The section on script execution should also mention the -m switch and the section on

[issue14940] Usage documentation for pysetup

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : Command line documentation for pysetup must be provided under http://docs.python.org/dev/using/index.html before 3.3 is released. -- messages: 161816 nosy: eric.araujo, ncoghlan, tarek priority: deferred blocker severity: normal stage: needs patch stat

[issue14939] Usage documentation for pyvenv

2012-05-28 Thread Nick Coghlan
New submission from Nick Coghlan : Command line documentation for pyvenv must be provided under http://docs.python.org/dev/using/index.html before 3.3 is released. -- assignee: docs@python components: Documentation messages: 161815 nosy: docs@python, ncoghlan, vinay.sajip priority: defe

[issue14744] Use _PyUnicodeWriter API in str.format() internals

2012-05-28 Thread STINNER Victor
STINNER Victor added the comment: > Functions to write digits into a string may be appropriate > in the stringlib. Oh, stringlib is specific to unicodeobject.c: it cannot be used outside. -- ___ Python tracker __

[issue14744] Use _PyUnicodeWriter API in str.format() internals

2012-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I just sent you a patch which does not use any macros or stringlib. -- ___ Python tracker ___ ___

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Roger Serwy
Roger Serwy added the comment: The "open_completions" method in AutoComplete.py is where the bug exists. When mode == COMPLETE_FILES, the code searches for characters within the ASCII set, plus a few others contained in FILENAME_CHARS. Attached is a patch to also include characters beyond th

[issue10839] email module should not allow some header field repetitions

2012-05-28 Thread R. David Murray
R. David Murray added the comment: My original fix for this for email6 got lost in a refactoring. Here is a patch that fixes it in the code I recently checked in. It may not cover all the headers that should be unique, since I haven't implemented parsers for all structured headers yet, but

[issue14744] Use _PyUnicodeWriter API in str.format() internals

2012-05-28 Thread STINNER Victor
STINNER Victor added the comment: > So far away I have to say, it is better to use stringlib > approach, than the massive macros, which are more difficult > to read and edit. Ah, you don't like the two macros in longobject.c. Functions to write digits into a string may be appropriate in the st

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Brett Cannon
Brett Cannon added the comment: You can't have it both ways. If you explicitly import __init__ then it becomes just another module to Python, but you still need the implicit package module (i.e. without the __init__ name) for everything else to work since so much of the import system relies o

[issue14920] help(urllib.parse) fails when LANG=C

2012-05-28 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Francisco Gracia
Francisco Gracia added the comment: I would be delighted, but unfortunately I am a very poor programmer and do not have the slightest idea of how all this works. -- ___ Python tracker

[issue11783] email parseaddr and formataddr should be IDNA aware

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- assignee: r.david.murray -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue11783] email parseaddr and formataddr should be IDNA aware

2012-05-28 Thread R. David Murray
R. David Murray added the comment: I'm finally getting back around to this. Torsten, could you submit a contributor agreement, please? (http://www.python.org/psf/contrib/) And to answer the question you had about the 'still failing' test, parseaddr isn't currently doing the encoded-word dec

[issue14930] Make memoryview weakrefable

2012-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset bc0281f85409 by Richard Oudkerk in branch 'default': Issue #14930: Make memoryview objects weakrefable. http://hg.python.org/cpython/rev/bc0281f85409 -- nosy: +python-dev ___ Python tracker

[issue14775] Dict untracking can result in quadratic dict build-up

2012-05-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: > No problem. I've been thinking about getting involved with python > development for a while - this seemed a good place to start! It is. You can also subscribe to the core-mentorship mailing-list if you want: http://mail.python.org/mailman/listinfo/core-mento

[issue14775] Dict untracking can result in quadratic dict build-up

2012-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 47e6217d0e84 by Antoine Pitrou in branch '3.2': Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. http://hg.python.org/cpython/rev/47e6217d0e84 New changeset 7951900afd00 by Anto

[issue11783] email parseaddr and formataddr should be IDNA aware

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- components: +email -Library (Lib) nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue12037] test_email failures under Windows with the eol extension activated

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- assignee: r.david.murray -> components: +email nosy: +barry ___ Python tracker ___ ___ Python-bugs-li

[issue10839] email module should not allow some header field repetitions

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- components: +email -Library (Lib) nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue14360] email.encoders.encode_quopri doesn't work with python 3.2

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- components: +email -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue13700] imaplib.IMAP4.authenticate authobject does not work correctly in python3

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- components: +email -Library (Lib) nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1079] decode_header does not follow RFC 2047

2012-05-28 Thread R. David Murray
R. David Murray added the comment: Ralf, thanks very much for this patch. I'm considering applying it. Given that the current code breaks on parsing various legitimate constructs, it seems like the behavior change (preserving whitespace in the non-EW parts...which IMO is correct) should be

[issue14775] Dict untracking can result in quadratic dict build-up

2012-05-28 Thread Tim Silk
Tim Silk added the comment: > Thank you for doing this! No problem. I've been thinking about getting involved with python development for a while - this seemed a good place to start! > Do you have a real name so that I can credit you? Yes (thankfully) - I've added it to my profile. > Also,

[issue14928] Fix importlib bootstrapping issues

2012-05-28 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue9041] raised exception is misleading

2012-05-28 Thread Meador Inge
Changes by Meador Inge : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue9041] raised exception is misleading

2012-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8a65eceea56c by Meador Inge in branch '2.7': Issue #9041: raised exception is misleading http://hg.python.org/cpython/rev/8a65eceea56c New changeset a2e140b083e0 by Meador Inge in branch '3.2': Issue #9041: raised exception is misleading http://hg.

[issue11050] email.utils.getaddresses behavior contradicts RFC2822

2012-05-28 Thread R. David Murray
R. David Murray added the comment: The pre 3.3 email package does not do any header unfolding. You can make this work by doing the header unfolding before passing it to getaddresses: >>> email.utils.getaddresses([''.join(m['to'].splitlines())]) [('A (B)', 'c...@d.org'), ('', 'd...@e.org')

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Aaron Meurer
Changes by Aaron Meurer : -- nosy: +Aaron.Meurer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue14938] 'import my_pkg.__init__' creates duplicate modules

2012-05-28 Thread Ronan Lamy
New submission from Ronan Lamy : If an __init__.py file contains relative imports, doing 'import my_pkg.__init__' or calling __import__('my_pkg.__init__') creates duplicate versions of the relatively imported modules, which (I believe) causes cryptic errors in some cases (cf. the metaclass iss

[issue975330] Inconsistent newline handling in email module

2012-05-28 Thread R. David Murray
R. David Murray added the comment: I almost applied this patch, but my gut is having second thoughts about it. I don't think this is the correct solution. The correct solution would be to delay the encoding of the body part until the message generation phase, and use the requested linesep a

[issue14930] Make memoryview weakrefable

2012-05-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Updated patch. Looks good to me! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue14930] Make memoryview weakrefable

2012-05-28 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Martin v . Löwis
Martin v. Löwis added the comment: Would you like to contribute a patch? -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-05-28 Thread Francisco Gracia
New submission from Francisco Gracia : I find specially nice the completion feature for filenames of IDLE when they include long paths, something that is more mand more frequent with big disks and infinite amounts of files. But there is a small problem with it. If the name of any of the direct

[issue14936] PEP 3121, 384 refactoring applied to curses_panel module

2012-05-28 Thread Robin Schreiber
Robin Schreiber added the comment: I have now also added the PEP3121 patch for the curses_panel module. -- ___ Python tracker ___ ___

[issue14936] PEP 3121, 384 refactoring applied to curses_panel module

2012-05-28 Thread Robin Schreiber
Changes by Robin Schreiber : Added file: http://bugs.python.org/file25747/curses_panel_pep3121.patch ___ Python tracker ___ ___ Python-bugs-li

[issue14936] PEP 3121, 384 refactoring applied to curses_panel module

2012-05-28 Thread Robin Schreiber
New submission from Robin Schreiber : I have now applied the Heap-Type Refactoring from PEP 384 to the curses_panel module. Currently I still provide seperate patches for the PEP 3121 and PEP 384 refactoring. As mentioned in Issue #14935 I am planning to release single patches in the future fo

[issue14935] PEP 384 Refactoring applied to _csv module

2012-05-28 Thread Robin Schreiber
Robin Schreiber added the comment: I was of course referring to PEP 384. Sorry for the inconvenience. -- title: PEP 341 Refactoring applied to _csv module -> PEP 384 Refactoring applied to _csv module ___ Python tracker

[issue14935] PEP 341 Refactoring applied to _csv module

2012-05-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue14935] PEP 341 Refactoring applied to _csv module

2012-05-28 Thread Robin Schreiber
New submission from Robin Schreiber : Corresponding to my previous Issue #14732 I have now applied the Heap-Type Refactoring from PEP 341 to the _csv module. As I will apply this refactoring for almost every Standard Module, I will bundle my PEP3121 and PEP341 refactorings into a single patch

[issue11954] 3.3 - 'make test' fails

2012-05-28 Thread Stefan Krah
Stefan Krah added the comment: I can confirm that test_distutils runs fine on Fedora both as root and as non-root (rpmbuild is installed). Also, I don't see any test failures when running the whole test suite as root. IMO this means that all remaining issues in this report are fixed. -

[issue14744] Use _PyUnicodeWriter API in str.format() internals

2012-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > So, do you have any comment or complain? Or can I commit the patch? I beg your pardon, I will do a review and additional benchmarks today. So far away I have to say, it is better to use stringlib approach, than the massive macros, which are more difficult

[issue14930] Make memoryview weakrefable

2012-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: Updated patch. -- Added file: http://bugs.python.org/file25744/memoryview-weakref.patch ___ Python tracker ___ ___

[issue14443] Distutils test_bdist_rpm failure

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: Dave, sending this one back in your direction. Is there a relevant difference between rpmbuild in RHEL6 and rpmbuild in current Fedora? -- assignee: eric.araujo -> dmalcolm ___ Python tracker

[issue14915] pysetup3.3 install is case insensitive, remove is case sensitive

2012-05-28 Thread Nick Coghlan
Nick Coghlan added the comment: My original report looks like a misdiagnosis. What appears to be happening is that "pysetup3.3 install" is case *insensitive* (thus allowing "pysetup3.3 install distutils2", but "pysetup3.3 remove" is case *sensitive*, thus requiring "pysetup3.3 remove Distutil

[issue9742] Python 2.7: math module fails to build on Solaris 9

2012-05-28 Thread Stefan Krah
Stefan Krah added the comment: This is just a suggestion, but the easiest way of getting good support for a non-mainstream platform is to provide a build slave: http://www.python.org/dev/buildbot/ Setting up a build slave takes 20 min: http://bugs.python.org/file24399/buildslave_install.txt

[issue14744] Use _PyUnicodeWriter API in str.format() internals

2012-05-28 Thread STINNER Victor
STINNER Victor added the comment: So, do you have any comment or complain? Or can I commit the patch? Le 24 mai 2012 11:57, "STINNER Victor" a écrit : > > STINNER Victor added the comment: > > >> For Python 3.3, _PyUnicodeWriter API is faster than the Py_UCS4 buffer > API and PyAccu API in qu

[issue14915] pysetup may leave a package in a half-installed state

2012-05-28 Thread Éric Araujo
Éric Araujo added the comment: IIUC checking trove classifiers / requires-python or something else before installing may be a good idea, but this bug is about something else: a project can be half-installed. You could reproduce it with a Python 2 project with one file containing a syntax err

[issue14443] Distutils test_bdist_rpm failure

2012-05-28 Thread Ross Lagerwall
Ross Lagerwall added the comment: Unfortunately, it seems like it's still failing on the RHEL 6 buildbot. -- status: pending -> open ___ Python tracker ___ _

  1   2   >