[issue26698] Tk DPI awareness

2016-04-24 Thread Westley Martínez

Westley Martínez added the comment:

IDLE 3.5.1 on Windows 10

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18844] allow weights in random.choice

2016-04-06 Thread Westley Martínez

Westley Martínez added the comment:

I still like Serhiy's implementation more. A function that returns a list 
instead of the item is unnatural and doesn't fit with the rest of the module.

I think there's need to be some discussion about use cases. What do users 
actually want? Maybe post this on the ideas list.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18844>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26698] IDLE DPI Awareness

2016-04-05 Thread Westley Martínez

New submission from Westley Martínez:

IDLE is blurry on High DPI Windows, because IDLE is not DPI aware. IDLE should 
be made to be DPI aware so that the text is more readable.

--
components: IDLE, Library (Lib), Tkinter
messages: 262930
nosy: westley.martinez
priority: normal
severity: normal
status: open
title: IDLE DPI Awareness
type: enhancement
versions: Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17390] display python version on idle title bar

2014-04-03 Thread Westley Martínez

Westley Martínez added the comment:

I second that the title should start with the filename, by default.  This seems 
to be the precedent, and it makes it easy when working with multiple files.

Example:
xxx.py - IDLE x.y.z: C:\mydir\xxx.py

Terry, I think we can generalize this as 'important/useful title - general: 
specific' and apply it to all windows.  The first element essentially 
guarantees that the title name will be a good one for the taskbar.  We can 
apply this to say the FIF output window:
Matches for hello - IDLE x.y.z: C:\output.txt

but maybe everything after the hyphen isn't necessary.  I wonder if long titles 
could be annoying or distracting.  Regardless, anything more specific than 
'Output Window' will be better.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17390
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7676] IDLE shell shouldn't use TABs

2014-03-31 Thread Westley Martínez

Westley Martínez added the comment:

I think the prompt should be in margins, completely separate from the input.  
It is just meant to be a guide anyway, and make this would make it easy to copy 
code from the interactive shell to a file.  I think output should be in a 
separate window or frame altogether.  I see no reason for keeping it tied with 
the input.

--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7676
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1617161] Instance methods compare equal when their self's are equal

2014-03-12 Thread Westley Martínez

Westley Martínez added the comment:

I updated the tests to be in sync, but the implementation of the fix is not so 
trivial.  The conversion from cmp() to rich comparison is the primary culprit, 
so it will take time for me to get familiar enough with the C source to update 
the fix.  I couldn't seem to get the patch to apply even to the 2.x branch (I 
think it's because it's an SVN patch...) to see if the fix actually works.

That said, this enhancement is so old that it might not warrant a fix at all.  
Maybe it should be brought up on python-dev?

--
Added file: http://bugs.python.org/file34367/1617161_test_update.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1617161
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18410] IDLE Improvements: Unit test for SearchDialog.py

2014-03-11 Thread Westley Martínez

Westley Martínez added the comment:

I've submitted a patch.  It's not complete.  The global functions for the 
SearchDialog module don't yet have tests because I'm not sure of what these 
functions are used for.  I'd like for anyone to point me in the right direction 
for implementing those tests.  Then there are two tests for the class's main 
methods.

I assume tests are needed for SearchDialogBase.py as well.  Should those be in 
a separate module?

--
keywords: +patch
Added file: http://bugs.python.org/file34354/idle_test_searchdialog.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18410
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1617161] Instance methods compare equal when their self's are equal

2014-03-11 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1617161
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18410] IDLE Improvements: Unit test for SearchDialog.py

2014-03-09 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18410
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20877] test_grammar: assertEquals is deprecated

2014-03-09 Thread Westley Martínez

New submission from Westley Martínez:

Use of assertEquals in test_grammar is deprecated.  I've included a patch  to 
change it to assertEqual.

--
files: test_grammar.deprecation.diff
keywords: patch
messages: 213001
nosy: westley.martinez
priority: normal
severity: normal
status: open
title: test_grammar: assertEquals is deprecated
versions: Python 3.4, Python 3.5
Added file: http://bugs.python.org/file34323/test_grammar.deprecation.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20877
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2014-03-07 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13936
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2014-03-07 Thread Westley Martínez

Westley Martínez added the comment:

So is the plan to deprecate this in 3.5 and remove in 3.6?  If so, the question 
is where should the deprecation be thrown?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13936
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12387] IDLE save keyboard shortcut problem

2014-03-02 Thread Westley Martínez

Westley Martínez added the comment:

I know that Tk has individual states for whether or not a key is pressed with 
Caps Lock or Shift or other modifiers, so maybe there is a way to have the 
shortcuts ignore Caps Lock entirely.

More info: 
http://stackoverflow.com/questions/665502/status-of-shift-and-caps-lock-in-python

--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12387
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20580] IDLE should support platform-specific default config defaults

2014-02-28 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20580
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10747] Include version info in Windows shortcuts

2014-02-26 Thread Westley Martínez

Westley Martínez added the comment:

I understand this is an old issue. Sorry if it is no longer relevant.

I have usually have at least two versions of Python installed on Windows: 2.x 
and 3.x.

In Windows 7, if you pin a certain shortcut to the start menu, you can't tell 
what version of Python is for. I'd like that to be changed. Nick's format looks 
good.

--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10747
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17390] display python version on idle title bar

2014-02-26 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17390
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11122] bdist_rpm should use rpmbuild, not rpm

2014-02-26 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11122
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17390] display python version on idle title bar

2014-02-26 Thread Westley Martínez

Westley Martínez added the comment:

How about adding an optional argument to OutputWindow that specifies the title 
for the window?  Or would this be more suitable for EditorWindow (which 
OutputWindow inherits from)?  Either way, doing this would allow any 
OutputWindow to specify its own title.  The current title Output, is pretty 
useless.

I've written a patch that adds the functionality. In addition, I changed the 
title of the Find in Files output window to what you imagined.

--
Added file: http://bugs.python.org/file34239/issue17390.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17390
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2014-02-17 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1100942
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20265] Bring Doc/using/windows up to date

2014-02-17 Thread Westley Martínez

Westley Martínez added the comment:

I personally like this page about environment variables:
http://www.computerhope.com/issues/ch000549.htm

It is clear, concise, and has pretty pictures.  However, it does not address 
Windows 8.  Since Windows 8 is becoming more popular everyday, and since it is 
rather odd and difficult to configure, we should update the article to include 
stuff for Windows 8.

Unfortunately, I don't have Windows 8, so I can't help there.

--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20265
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20402] List comprehensions should be noted in for loop documentation

2014-02-17 Thread Westley Martínez

Westley Martínez added the comment:

I'm curious what the best way to do this would be.  Obviously the simplest 
would just be 'See also list comprehensions.'  However since this is a 
tutorial, I was thinking of adding something like this:
'In other languages, for loops are often used to fill a sequence with data.  
While this method works just as well in Python, it is often better to use a 
list comprehension' and then there could be an example like that found here:
http://docs.python.org/2/tutorial/datastructures.html#list-comprehensions

Followed by a link to more info on list comprehensions.

--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20402
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20146] UserDict module docs link is obsolete

2014-02-17 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20146
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18840] Tutorial recommends pickle module without any warning of insecurity

2013-12-04 Thread Westley Martínez

Westley Martínez added the comment:

Sounds good to me.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18840
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11176] give more meaningful argument names in argparse documentation

2013-09-23 Thread Westley Martínez

Westley Martínez added the comment:

I've skimmed through the patches.  Good job kids.  This is much better than it 
was before.  No more of that silly command-line calculator or the foobar 
nonsense that sounds drier than the POSIX standard.

Is there anything else that needs to be done?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11176
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18844] allow weights in random.choice

2013-09-15 Thread Westley Martínez

Westley Martínez added the comment:

I think Storchaka's solution is more transparent and I agree with him on the 
point that the choice generator should be exposed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18844
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18903] IDLE file-completion is case-sensitive in Windows

2013-09-10 Thread Westley Martínez

Westley Martínez added the comment:

I've written a patch that sort of implements the functionality that makes the 
most sense to me.  The problem is it only works right for the first entry.  
It's kind of wonky and I'm not entirely sure how it behaves, nor do I know the 
cause of the bug, but it's a start.

--
keywords: +patch
Added file: http://bugs.python.org/file31710/cpython-idle-18903-1.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18903
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18903] IDLE file-completion is case-sensitive in Windows

2013-09-08 Thread Westley Martínez

Westley Martínez added the comment:

My example was totally abstract and untested.  Sorry for any confusion.

After doing some research, I find that this issue is complicated further:
http://support.microsoft.com/kb/100625

I think we can assume that running into a situation where there are identical 
filenames except for case is quite rare.  The thing is, I don't even know how 
to make files like this on Windows.  Explorer doesn't work, and other Win32 
apps won't do it (they all spit up errors).  I reckon I can do it with Python 
or some other language, since I assume they does these things at a low level.

I'll start looking at the code and see if I can come up with a patch.  My aim 
is to make it similar enough to how the Windows Terminal does it, (i.e. it 
corrects the typed name to the proper case) since that is what I'd imagine most 
Windows programmers are used to.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18903
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18903] IDLE file-completion is case-sensitive in Windows

2013-09-07 Thread Westley Martínez

Westley Martínez added the comment:

I believe HFS is case-preserving as well, but it also can be configured to be 
case-sensitive.  I'm not a Mac owner though so don't take my word for it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18903
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18844] allow weights in random.choice

2013-09-01 Thread Westley Martínez

Westley Martínez added the comment:

Honestly, I think adding weights to any of the random functions are trivial 
enough to implement as is.  Just because something becomes a common task does 
not mean it ought to be added to the stdlib.

Anyway, from a user point of view, I think it'd be useful to be able to send a 
sequence to a function that'll weight the sequence for use by random.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18844
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18903] IDLE file-completion is case-sensitive in Windows

2013-09-01 Thread Westley Martínez

New submission from Westley Martínez:

Hi, I'm not sure if this would be considered a bug or a feature request, but 
IDLE's file-completion is case-sensitive in Windows (e.g. if I have a file 
named ABBA and I type in 'abb' + tab, ABBA won't pop up.  Since Windows files 
systems are not case-sensitive, it might make sense for the file-completion to 
disregard case as well.  I'm not sure if this behaviour is preferred, however, 
so I'll leave that up for discussion.

I tested the behaviour on 3.3 and 3.4; I assume it's the same for other 
versions as well.

--
components: IDLE, Windows
messages: 196765
nosy: anikom15
priority: normal
severity: normal
status: open
title: IDLE file-completion is case-sensitive in Windows
type: enhancement
versions: Python 3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18903
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18844] allow weights in random.choice

2013-08-31 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18844
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13951] Document that Seg Fault in .so called by ctypes causes the interpreter to Seg Fault

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

Can we have this committed?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13951
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

On Thu, Oct 11, 2012 at 3:06 PM, Terry J. Reedy rep...@bugs.python.org wrote:

 Terry J. Reedy added the comment:

 This patch (I suspect it is this one) disabled the use of '/' in filenames on 
 windows when using filename completion.

 'c:\   wait, tab, ^space bring up box in 3.2.3 and 3.3.0
 (If there is no 'r' prefix, it really should require '\\' to be safe.)

+1 for requiring \\.

I'll test this tomorrow and report back the behaviour.  On Linux it
seems that the window only pops up when you press tab.  I think
behaviour should be as identical on all platforms as possible.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14974] rename packaging.pypi to packaging.index

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

I think I like the term catalog myself, but I'm not wholly opposed to index.  I 
think it is certainly better than pypi.

Although the namespace does reduce the genericness of index, a lot of 
programmers (including me) like to use the from namespace import x method.  I 
think that's considerable.  That said, programmers could use from packaging 
import index as pindex or some sort to alleviate this.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14974
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18840] Tutorial recommends pickle module without any warning of insecurity

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

How about we simply add the warning from 
http://docs.python.org/3/library/pickle.html#module-pickle to the beginning (or 
end) of the section?  The Official Python Tutorial has always assumed a certain 
programmer's competence.  It's up to them if they want to use the module or not.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18840
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

On 3.4.0a1 on Windows it seems to come up automatically with \ or \\.  A single 
\ will only pop up with the tab key; I think it's good that way.  Special 
characters (i.e. æ) work normally.  All this said, I think this issue is fixed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18840] Tutorial recommends pickle module without any warning of insecurity

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

I won't question the usefulness of JSON.  I'm not a web programmer and have 
never used it.  From my interpretation of the tutorial, it seems that the 
section's purpose is for storing python objects.  If pickle is going to stay in 
the tutorial, I think a warning is imperative.  Either way, I think a section 
on JSON would be a welcome addition to the tutorial.

+1 adding a warning
+0 keeping pickle in the tutorial

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18840
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18840] Tutorial recommends pickle module without any warning of insecurity

2013-08-30 Thread Westley Martínez

Westley Martínez added the comment:

Here's a patch that adds the warning, if we so choose to keep pickle in the 
tutorial.  It's taken verbatim from the pickle module's documentation.

--
keywords: +patch
Added file: http://bugs.python.org/file31524/pickle-add-warning_18840.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18840
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14974] rename packaging.pypi to packaging.index

2012-06-02 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

-1
index is too generic to convey any kind of meaning and can be confused--atleast 
for me--with list.index. Sometimes it is better for a name to be specific.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14974
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2012-06-02 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I think a better technique would be to expand FILENAME_CHARS to include more 
characters.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2012-06-02 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Also, shouldn't the space character ' ' be included?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2012-06-02 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Ahh okay, sorry for the triple post, I have an idea.  On UNIX, the function 
should accept any character except: \0 /, and on Windows should accept any 
character except: \0 \ / : * ?|  On classic Macintosh, : is invalid.  
However, I do not know what characters are valid on other systems.  (I believe 
Mac OS X is the same as UNIX, but am not sure.)

Included is a patch with FILENAME_CHARS left in in case anything still needs it.

--
Added file: http://bugs.python.org/file25802/cpython-14937.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2012-06-02 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

You're right.  The code shouldn't *have* to check if the name is valid.  It 
should just accept that the name is already valid.  This would simplify things.

Here's the problem: the code needs to find the index of where the string with 
the filename starts.  The way the code does it now by checking for a quote in a 
rather obfuscated way (while i and curline[i-1] in FILENAME_CHARS + SEPS:).  
So, changing that line to say curline[i-1] != ' or curline[i-1] != '' would 
work (in theory) but I'm really hoping there's a better way.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14937
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14972] listcomp with nested classes

2012-05-31 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

$ python
Python 3.2.3 (default, Apr 23 2012, 23:35:30) 
[GCC 4.7.0 20120414 (prerelease)] on linux2
Type help, copyright, credits or license for more information.
 class A:
... x = 42
... y = [x for _ in '1']
... 
Traceback (most recent call last):
  File stdin, line 1, in module
  File stdin, line 3, in A
  File stdin, line 3, in listcomp
NameError: global name 'x' is not defined
 x = 42
 class A:
... x = 12
... y = [x for _ in '1']
... 
 A.y
[42]

It seems that the list comprehension is looking at the module's scope as 
opposed to the class scope.  This definitely seems incorrect to me.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14972
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14185] Failure to build _dbm with ndbm on Arch Linux

2012-03-03 Thread Westley Martínez

New submission from Westley Martínez aniko...@gmail.com:

When building Python I get this:

building dbm using ndbm
*** WARNING: renaming _dbm since importing it failed: 
build/lib.linux-i686-3.3-pydebug/_dbm.cpython-33dm.so: undefined symbol: 
dbm_nextkey

Failed to build these modules:
_dbm 

I'm running Arch and I have gdbm installed so shouldn't it be building dbm with 
gdbm?

--
messages: 154845
nosy: anikom15
priority: normal
severity: normal
status: open
title: Failure to build _dbm with ndbm on Arch Linux
type: compile error
versions: Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14185
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13951] Seg Fault in .so called by ctypes causes the interpreter to Seg Fault

2012-03-03 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Hi I found this bug randomly and have made two small patches to change the 
documentation.  One assumes that the faulthandler module is available for 3.3.  
The other patch is for earlier versions of Python.

--
keywords: +patch
nosy: +anikom15
versions: +Python 3.3
Added file: http://bugs.python.org/file24722/cpython-13951.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13951
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13951] Seg Fault in .so called by ctypes causes the interpreter to Seg Fault

2012-03-03 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


Added file: http://bugs.python.org/file24723/cpython-13951-pre3.3.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13951
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14135] check for locale changes in test.regrtest

2012-03-03 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Here's a test that checks for changes to the locale.

--
nosy: +anikom15
Added file: http://bugs.python.org/file24724/test_14135.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14135
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13193] test_packaging and test_distutils failures

2011-10-26 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

http://www.archlinux.org/download/

It's a minimalist distribution but if you read through the install guide or 
beginner's guide you'll be fine.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13193
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13230] test_resources fails

2011-10-19 Thread Westley Martínez

New submission from Westley Martínez aniko...@gmail.com:

After running the uber test on the latest build of python (./python -bb -E -Wd 
-m test -r -w -uall) I get one error:
==
ERROR: test_resources 
(packaging.tests.test_command_install_data.InstallDataTestCase)
--
Traceback (most recent call last):
  File 
/home/westley/Projects/cpython/Lib/packaging/tests/test_command_install_data.py,
 line 134, in test_resources
with packaging.database.get_file('Spamlib', 'spamd') as fp:
  File /home/westley/Projects/cpython/Lib/packaging/database.py, line 649, in 
get_file
return open(get_file_path(distribution_name, relative_path),
  File /home/westley/Projects/cpython/Lib/packaging/database.py, line 644, in 
get_file_path
raise LookupError('no distribution named %r found' % distribution_name)
LookupError: no distribution named 'Spamlib' found

--

I also pasted the entire test output (verbose) to the testout file

--
components: Library (Lib)
files: testout.txt
messages: 146006
nosy: anikom15
priority: normal
severity: normal
status: open
title: test_resources fails
type: behavior
Added file: http://bugs.python.org/file23478/testout.txt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13230
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails because of borked compress program

2011-09-06 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

https://bugs.archlinux.org/task/25908

Looks like Allan will be taking care of this problem (eventually).  I think 
this bug can be closed.

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-09-04 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Is there anything preventing the patch from being committed?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11155] multiprocessing.Queue's put() signature differs from docs

2011-09-04 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

¡Hola!
Just checking in.  The documentation is still incorrect for all versions.  
There's a patch that fixes it ready to be reviewed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11155
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails because of borked compress program

2011-09-04 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I emailed the Arch Linux people to get more information on this particular 
issue.  If they decide that the compress program will stay as is I will write 
attempt to write a patch to skip the test based on the output of compress's 
--version flag.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11176] give more meaningful argument names in argparse documentation

2011-07-19 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I worked on this some time ago; the problem was the size of the documentation, 
i.e. it was difficult to stay consistent.  Do I have time for this?  Yes, but I 
wouldn't get it done anytime soon, and the results could be anywhere from good 
to bad.  As it stands, the documentation is fairly good, so I don't think it's 
imperative to fix it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11176
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11155] multiprocessing.Queue's put() signature differs from docs

2011-04-16 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Can this patch be commited?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11155
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails because of borked compress program

2011-04-01 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I've already got a patch ready for #11678.

As for checking the compress command, perhaps we can accomplish it by comparing 
version information of the program:


$ compress --version
compress 1.4
Copyright (C) 2007 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License http://www.gnu.org/licenses/gpl.html.
There is NO WARRANTY, to the extent permitted by law.

Written by Jean-loup Gailly.


The last line may be the key. It says Jean-loup Gailly; he invented the gzip 
compression method, but not the LZW method used by the original compress 
program.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-31 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Perhaps I wasn't clear. That release version isn't for the system. It's for the 
installation disc. There's no way to get that info and it means nothing to 
anyone anyways. All users of Arch are expected to have their system fully up to 
date. There are no releases; Just do pacman -Syu and the system is made up to 
date.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11155] multiprocessing.Queue's put() signature differs from docs

2011-03-30 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

In that case, I've made a patch that changes the documentation so that item 
is now obj. for Queue.put and Queue.put_nowait.

--
Added file: http://bugs.python.org/file21484/doc-11155.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11155
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-29 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

That's the release version for the installation disc.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11155] multiprocessing.Queue's put() signature differs from docs

2011-03-29 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Well it's been quite some time and no response yet.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11155
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-28 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

('arch', '', '')

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-26 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Patch.

--
keywords: +patch
Added file: http://bugs.python.org/file21410/cpython-11678.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-26 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I forgot to say, Arch Linux is rolling release so it doesn't have a version or 
id.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-03-25 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

test_check_archive_formats (__main__.ArchiveUtilTestCase) ... ok
test_compress_deprecated (__main__.ArchiveUtilTestCase) ... FAIL
test_make_archive (__main__.ArchiveUtilTestCase) ... ok
test_make_archive_cwd (__main__.ArchiveUtilTestCase) ... ok
test_make_tarball (__main__.ArchiveUtilTestCase) ... ok
test_make_zipfile (__main__.ArchiveUtilTestCase) ... ok
test_make_zipfile_no_zlib (__main__.ArchiveUtilTestCase) ... ok
test_tarfile_vs_tar (__main__.ArchiveUtilTestCase) ... ok

==
FAIL: test_compress_deprecated (__main__.ArchiveUtilTestCase)
--
Traceback (most recent call last):
  File 
/home/westley/Projects/cpython/Lib/distutils/tests/test_archive_util.py, line 
165, in test_compress_deprecated
self.assertTrue(os.path.exists(tarball))
AssertionError: False is not true

--
Ran 8 tests in 0.203s

FAILED (failures=1)
Traceback (most recent call last):
  File /home/westley/Projects/cpython/Lib/runpy.py, line 160, in 
_run_module_as_main
__main__, fname, loader, pkg_name)
  File /home/westley/Projects/cpython/Lib/runpy.py, line 73, in _run_code
exec(code, run_globals)
  File 
/home/westley/Projects/cpython/Lib/distutils/tests/test_archive_util.py, line 
248, in module
run_unittest(test_suite())
  File /home/westley/Projects/cpython/Lib/test/support.py, line 1192, in 
run_unittest
_run_suite(suite)
  File /home/westley/Projects/cpython/Lib/test/support.py, line 1175, in 
_run_suite
raise TestFailed(err)
test.support.TestFailed: Traceback (most recent call last):
  File 
/home/westley/Projects/cpython/Lib/distutils/tests/test_archive_util.py, line 
165, in test_compress_deprecated
self.assertTrue(os.path.exists(tarball))
AssertionError: False is not true

[101559 refs]

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-03-25 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I may have figured out the problem. The test checks if the archive's extension 
is '.tar.Z', but the compress command on my computer appends the .gz extension 
to the file. To my surprise, the gunzip command worked on the file. So the 
compress command was actually creating gzipped files.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-03-25 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

('', '', '')

:D

I'm using Arch Linux.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-03-25 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

So how do other distros do it?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11678] Add support for Arch Linux to platform.linux_distributions()

2011-03-25 Thread Westley Martínez

New submission from Westley Martínez aniko...@gmail.com:

This comes from Issue 11340 http://bugs.python.org/issue11340.

Adding support for Arch Linux to platform.linux_distributions() will allow   a 
distutils test to be skipped for Arch. The Arch Linux website: 
http://www.archlinux.org/

--
components: Library (Lib)
messages: 132187
nosy: anikom15
priority: normal
severity: normal
status: open
title: Add support for Arch Linux to platform.linux_distributions()
type: feature request
versions: Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-03-05 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Arch Linux
kernel 2.6.37.2
glibc 2.13

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11340] test_distutils fails

2011-02-26 Thread Westley Martínez

New submission from Westley Martínez aniko...@gmail.com:

test_compressed_deprecated failed

--
components: Tests
files: test_distutils
messages: 129588
nosy: anikom15
priority: normal
severity: normal
status: open
title: test_distutils fails
type: behavior
versions: Python 3.3
Added file: http://bugs.python.org/file20923/test_distutils

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11340
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

New submission from Westley Martínez aniko...@gmail.com:

test_invalid_offset failed on linux2.

--
components: Tests
files: test_os
messages: 129589
nosy: anikom15
priority: normal
severity: normal
status: open
title: test_os fails
versions: Python 3.3
Added file: http://bugs.python.org/file20924/test_os

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11341
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

rev 88657
Arch Linux 2.6.37 x86_64 with glibc2.6
64-bit, little endian

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11341
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

 You are not running under a VM or something?

No

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11341
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11176] give more meaningful argument names in argparse documentation

2011-02-10 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I agree; it's too artsy. I'll see if I can come up with a relevant and clever 
alternative.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11176
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11155] multiprocessing.Queue's put() signature differs from docs

2011-02-08 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

I've gone through Lib/multiproccing/queues.py and have replaced obj with item. 
Here's the patch.

--
keywords: +patch
nosy: +anikom15
Added file: http://bugs.python.org/file20720/multiprocessing-11155.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11155
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11137] clarify use of imaplib IMAP4(_SSL) shutdown

2011-02-06 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

Perhaps we should say something regarding that shutdown, and similar methods, 
must be called after open.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8691] Doc: left alignment is not the default for numbers

2011-02-05 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

It seems  is only the default for numbers.  is the default for strings, 
lists, sets, dicts, etc. I have made a patch, though Eric knows the exact 
semantics.

I wonder what the rationale for having numbers use  is.

--
keywords: +patch
nosy: +anikom15
Added file: http://bugs.python.org/file20694/py3k-8691.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8691
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9362] Make exit/quit hint more novice friendly

2011-01-30 Thread Westley Martínez

Westley Martínez aniko...@gmail.com added the comment:

This is annoying. Every beginner's Python tutorial I've read made it very clear 
how to exactly exit the interactive shell. Ctrl has been in use for years. 
Changing it for novices' sake is ridiculous. Do we need to expand every 
abbreviation? Python will turn into Java (joke). As for Ctrl-D or Ctrl-Z, I 
think it's fine the way it is. Python is used for scripting, and Windows 
administators are familiar with Ctrl-Z for EOF but may not necessarily be 
familiar with Ctrl-D.

Ok, in final, I think the only thing that might be changed is the shell's 
opening message:

Python 3.1.3 (r313:86834, Jan 28 2011, 20:00:55) 
[GCC 4.5.2] on linux2
Type help, copyright, credits or license for more information.
Type exit(), quit() or Ctrl-D (i.e. EOF) to exit.
 

On Windows, Ctrl-D is replaced with Ctrl-Z.

--
nosy: +anikom15

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9362
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com