[issue10435] Document unicode C-API in reST

2010-11-16 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue10435> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10439] PyCodec C API is not documented in reST

2010-11-16 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue10439> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-02-22 Thread Ezio Melotti
Ezio Melotti added the comment: Some buildbots are failing after the commit. Also in the crypt.py module I still see things that according to msg126453 should be fixed already: * more statements on the same line (e.g. "if salt == None: salt = mksalt()"); * the hardcoded salt valu

[issue11283] incorrect pattern in the re module docs for conditional regex

2011-02-22 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11283> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11282] unittest document not keep consist with code

2011-02-22 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11282> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11282] unittest document not keep consist with code

2011-02-22 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue11282> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11272] input() has trailing carriage return on windows

2011-02-22 Thread Ezio Melotti
Ezio Melotti added the comment: Is it possible to add some tests for input()? Also the patch uses tabs instead of spaces. -- ___ Python tracker <http://bugs.python.org/issue11

[issue11298] unittest discovery needs better explanation

2011-02-23 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11298> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11298] unittest discovery needs better explanation

2011-02-23 Thread Ezio Melotti
Ezio Melotti added the comment: http://code.python.org/hg/branches/py3k/ -- ___ Python tracker <http://bugs.python.org/issue11298> ___ ___ Python-bugs-list mailin

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-23 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11303> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: See also discussion on #5902. Steffen, your normalization function looks similar to encodings.normalize_encoding, with just a few differences (it uses spaces instead of dashes, it divides alpha chars from digits). If it doesn't slow down the normal cases

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: If the first normalization function is flexible enough to match most of the spellings of the optimized encodings, they will all benefit of the optimization without having to go through the long path. (If the normalized encoding name is then passed through, the

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: That will also accept invalid names like 'iso88591' that are not valid now, 'iso 8859 1' is already accepted. -- ___ Python tracker <http://bug

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: > That won't work, Victor, since it makes invalid encoding > names valid, e.g. 'utf(=)-8'. That already works in Python (thanks to encodings.normalize_encoding). The problem with the patch is that it makes names like 'iso88591'

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: The attached patch is a proof of concept to see if Steffen proposal might be viable. I wrote another normalize_encoding function that implements the algorithm described in msg129259, adjusted the shortcuts and did some timings. (Note: the function is not

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: Probably not, but that part should be changed if possible, because is less efficient than the previous version that was allocating only 11 bytes. The problem here is that the previous versions was only changing/removing chars, whereas this might add spaces too

[issue11313] Speed up default encode()/decode()

2011-02-24 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11313> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11313] Speed up default encode()/decode()

2011-02-24 Thread Ezio Melotti
Ezio Melotti added the comment: Patch looks good. I checked the tests and couldn't fine any test for .encode()/.decode() without encoding, so I added them in the attached patch. -- components: +Interpreter Core stage: -> commit review Added file: http://bugs.python.org/f

[issue11322] encoding package's normalize_encoding() function is too slow

2011-02-25 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +belopolsky, ezio.melotti ___ Python tracker <http://bugs.python.org/issue11322> ___ ___ Python-bugs-list mailing list Unsub

[issue11298] unittest discovery needs better explanation

2011-02-25 Thread Ezio Melotti
Ezio Melotti added the comment: What about something like """ In order to be compatible with test discovery, all the test modules must be importable from the top level directory of the project (in other words, they must be part of the project :ref:`package `, and their name

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-25 Thread Ezio Melotti
Ezio Melotti added the comment: +1 on the backport. -- ___ Python tracker <http://bugs.python.org/issue11303> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11303] b'x'.decode('latin1') is much slower than b'x'.decode('latin-1')

2011-02-25 Thread Ezio Melotti
Ezio Melotti added the comment: > For other spellings like "utf8" or "latin1", I wonder if it would be > useful to emit a warning/suggestion to use the standard spelling. It would prefer to see the note added by Alexander in the doc mention *only* the preferred s

[issue8271] str.decode('utf8', 'replace') -- conformance with Unicode 5.2.0

2011-02-25 Thread Ezio Melotti
Ezio Melotti added the comment: After a mail I sent to the Unicode Consortium about the corner case I found, they updated the "Best Practices for Using U+FFFD"[0] and now it says: """ Another example illustrates the application of the concept of maximal subpart for

[issue8271] str.decode('utf8', 'replace') -- conformance with Unicode 5.2.0

2011-02-27 Thread Ezio Melotti
Ezio Melotti added the comment: The patch turned out to be less trivial than I initially thought. The current algorithm checks for invalid continuation bytes in 4 places: 1) before the switch/case statement in Objects/unicodeobject.c when it checks if there are enough bytes in the string (e.g

[issue11359] Please replace the use of pickle in subprocess with json.

2011-02-28 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Please replace the use of pickle in multiprocessing with json. ___ Python tracker <http://bugs.python

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-02-28 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Library (Lib) stage: -> needs patch type: -> feature request versions: +Python 3.3 ___ Python tracker <http://bugs.python.org/i

[issue11373] Fix 2 new typos in the docs

2011-03-04 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eric.araujo ___ Python tracker <http://bugs.python.org/issue11373> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11405] Wrong reference to string module in tutorial/inputoutput.rst

2011-03-05 Thread Ezio Melotti
Ezio Melotti added the comment: That sentence should be changed to mention the str method rather than the deprecated functions in the string module. (The methods' names after the example should also link to the right str.method -- assignee: docs@python -> ezio.melotti keyword

[issue11407] unittest.TestCase.run should return result

2011-03-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11407> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2771] test issue

2011-03-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue2771> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11239] regexp-howto - add missing } to metachars

2011-03-06 Thread Ezio Melotti
Ezio Melotti added the comment: Actually '}' is not a metachar, the metachars should be only "|()[{.+*?^$\". >>> re.match('^a+(}+)b+$', '}bbb') <_sre.SRE_Match object at 0xb77aa860> >>> re.match('^a+(}+)b

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Library (Lib) -Extension Modules nosy: +ezio.melotti, georg.brandl type: -> behavior ___ Python tracker <http://bugs.python.org/issu

[issue11435] Links to source code should now point to hg repo

2011-03-07 Thread Ezio Melotti
Ezio Melotti added the comment: IIUC those svn links will keep working for some time, but if/when the svn repo and/or viewvc will be removed an URL rewrite rule should be fix the problem. The patch seems OK to me. -- nosy: +ezio.melotti ___ Python

[issue11298] unittest discovery needs better explanation

2011-03-08 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: docs@python -> ezio.melotti stage: -> patch review ___ Python tracker <http://bugs.python.org/issue11298> ___ ___

[issue11298] unittest discovery needs better explanation

2011-03-08 Thread Ezio Melotti
Ezio Melotti added the comment: #11298: Improve the unittest discovery explanation. http://hg.python.org/cpython/rev/bbf8a8a1af17 -- ___ Python tracker <http://bugs.python.org/issue11

[issue11298] unittest discovery needs better explanation

2011-03-08 Thread Ezio Melotti
Ezio Melotti added the comment: #11298: merge from 3.2. http://hg.python.org/cpython/rev/fa23f323d747 -- ___ Python tracker <http://bugs.python.org/issue11

[issue11298] unittest discovery needs better explanation

2011-03-08 Thread Ezio Melotti
Ezio Melotti added the comment: #11298: Improve the unittest discovery explanation. http://hg.python.org/cpython/rev/88b5a93b1725 -- ___ Python tracker <http://bugs.python.org/issue11

[issue11298] unittest discovery needs better explanation

2011-03-08 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed on 2.7, 3.2 and py3k, thanks for the patch! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11435] Links to source code should now point to hg repo

2011-03-09 Thread Ezio Melotti
Ezio Melotti added the comment: The svn repos and viewvc won't disappear soon because they are used for other things (e.g. the tracker). I think it's better to avoid redirects until svn and/or viewvc are definitely gone. -- ___ Pyth

[issue1271] Raw string parsing fails with backslash as last character

2011-03-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: closed -> open ___ Python tracker <http://bugs.python.org/issue1271> ___ ___ Python-bugs-list mailing list Unsubscri

[issue11451] Raw string parsing fails with backslash as last character

2011-03-09 Thread Ezio Melotti
Ezio Melotti added the comment: I reopened #1271, please continue the discussion there. -- nosy: +ezio.melotti resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Raw string parsing fails with backslash as la

[issue5679] cleanUp stack for unittest

2011-03-09 Thread Ezio Melotti
Ezio Melotti added the comment: Apparently during a merge from trunk (r72477) the addCleanup and other methods ended up in 3.1rc1, even if they are documented as new in 3.2. I'll update the doc to say "new in 3.1". -- nosy

[issue10617] Collections ABCs can’t be linked to

2011-03-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue10617> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11460] Attribute Error

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: Hi, if you need help with Python try the Python mailing list[0] or ask on IRC[1]. This bug tracker is used only to report bugs in the Python language. [0]: http://www.python.org/community/lists/ [1]: http://www.python.org/community/irc/ -- nosy

[issue11461] Reading UTF-16 with codecs.readline() breaks on surrogate pairs

2011-03-10 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> test needed ___ Python tracker <http://bugs.python.org/issue11461> ___ ___ Python-bugs-list mai

[issue9796] Add summary tables for unittest API

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: The tables and several other doc changes went in 3.1 in cb3a925de1bd. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9796] Add summary tables for unittest API

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: And in 2.7 in 6e5b5d1b6714. There's some more refactoring that could be done on unittest.rst but it's out of the scope of this issue, so I'm closing this. -- resolution: -> fixed stage: commit review -> committed/rejected s

[issue11435] Links to source code should now point to hg repo

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: This can be closed. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue4758] Python 3.x internet documentation needs work

2011-03-10 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +giampaolo.rodola status: open -> languishing ___ Python tracker <http://bugs.python.org/issue4758> ___ ___ Python-bugs-lis

[issue4966] Improving Lib Doc Sequence Types Section

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: This is maybe out of the scope of this issue, but I would like to see all the basic data types on single page on their own. The current page[0] has some section about data types mixed with sections about operations, comparisons, and other things, followed by

[issue4966] Improving Lib Doc Sequence Types Section

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: The advantage of having one big page is that you can ctrl+f easily without having to go back and forth from different pages On the other hand, the page is not easy to browse (especially on small screens, mobile devices, old/slow pcs). In this case I don&#

[issue10665] Expand unicodedata module documentation

2011-03-10 Thread Ezio Melotti
Ezio Melotti added the comment: The patch contains non-ascii chars that should be avoided (they break `make pdf`). -- ___ Python tracker <http://bugs.python.org/issue10

[issue11435] Links to source code should now point to hg repo

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: Now it's fixed in 3.2 and 3.3. Thanks for the patch! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker <http:

[issue11426] CSV examples can't close their files

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: Patch looks good to me. The quotes are somewhat inconsistent (sometimes '' and sometimes ""), if you want you can "fix" them while you are at it. -- ___ Python tracker <

[issue11090] Doc errors for unittest in Python 3.1

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: addCleanup/doCleanups/startTestRun/stopTestRun are in 3.1 too and now they are documented as new in 3.1. I also removed the versionchanged note for __iter__ (0f9e5042907c). Test discovery, --failfast, --catch, --buffer are new in 3.2 and not documented on 3.1

[issue11468] Improve unittest basic example in the doc

2011-03-11 Thread Ezio Melotti
New submission from Ezio Melotti : The current example[0] uses assertTrue(element in self.seq) but it would be better to use assertIn instead. The whole example could be changed to something simpler that uses only the assertTrue/assertEqual/assertRaises methods correctly, e.g.: import

[issue11446] Incorrect PEP link in Language Reference section 7.7

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: Thanks for the report! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python

[issue10716] Modernize pydoc to use CSS

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: I added a few comments for ccs_v3.diff on rietveld. -- ___ Python tracker <http://bugs.python.org/issue10716> ___ ___ Python-bug

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: There's #4965 for that. Last time I tried there was some problem with it, maybe I'll try again in future. -- ___ Python tracker <http://bugs.python.o

[issue10665] Expand unicodedata module documentation

2011-03-12 Thread Ezio Melotti
Ezio Melotti added the comment: I think Georg said that non-ascii chars shouldn't be used directly in the rst files, and one of the reasons is that they break `make pdf` (I haven't tried though). I added him to the nosy. -- nosy: +ge

[issue11426] CSV examples can't close their files

2011-03-12 Thread Ezio Melotti
Ezio Melotti added the comment: This should be now fixed in 3.x, but not on 2.7. -- ___ Python tracker <http://bugs.python.org/issue11426> ___ ___ Python-bug

[issue670664] HTMLParser.py - more robust SCRIPT tag parsing

2011-03-12 Thread Ezio Melotti
Ezio Melotti added the comment: Thanks for the patch, however it would be better if you could get a clone of the CPython repo and make a patch against it. The patch should also include tests. You can check http://docs.python.org/devguide/ for more information

[issue11282] 3.3 unittest document not kept consist with code

2011-03-12 Thread Ezio Melotti
Ezio Melotti added the comment: Michael, what's the status of this? Do you think some of the removed methods should be added back even if they are marked as "removed in 3.3" in the 3.2 doc? -- ___ Python tracker <http://bugs.pyt

[issue7391] Re-title the "Using Backslash to Continue Statements" anti-idiom

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue7391> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11483] python fails to follow symlinks on windows

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +brian.curtin type: -> behavior ___ Python tracker <http://bugs.python.org/issue11483> ___ ___ Python-bugs-list mai

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: I would rephrase: +There is one subtle aspect to raw strings that is of special concern to Windows +programmers: a raw string may not end in an odd number of ``\`` characters. to something like: +There is one subtle aspect to raw strings: a raw string may not

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: That would of course be a good addition too. -- ___ Python tracker <http://bugs.python.org/issue11479> ___ ___ Python-bugs-list m

[issue2771] Test issue

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: fixed -> status: closed -> open ___ Python tracker <http://bugs.python.org/issue2771> ___ ___ Python-bugs-list

[issue2931] optparse: various problems with unicode and gettext

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: +1 -- ___ Python tracker <http://bugs.python.org/issue2931> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: It's a documentation bug, with_traceback is available in 3.x only. I now fixed the doc for 2.7, thanks for the report! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status:

[issue2650] re.escape should not escape underscore

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: I took a look to what other languages do, and it turned out that: perl escapes [^A-Za-z_0-9] [0]; .net escapes the metachars and whitespace [1]; java escapes the metachars or escape sequences [2]; ruby escapes the metachars [3]; It might be OK to exclude _ from

[issue11488] Add writelines test coverage in tempfile

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11488> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11498] test_zipfile.test_unicode_filenames should be skipped of no zlib

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11498> ___ ___ Python-bugs-list mai

[issue11499] 2to3: reassignment to bool is left in the file

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +benjamin.peterson title: reassignment to bool is left in the file -> 2to3: reassignment to bool is left in the file ___ Python tracker <http://bugs.python.org/issu

[issue11501] distutils.archive_util should handle absence of zlib module

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11501> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11498] test_zipfile.test_unicode_filenames should be skipped of no zlib

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: I fixed it in 3.2 too in d2689ed3dc83. Thanks for the patch! -- resolution: fixed -> stage: committed/rejected -> status: closed -> open ___ Python tracker <http://bugs.python.or

[issue11498] test_zipfile.test_unicode_filenames should be skipped of no zlib

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: crash -> behavior ___ Python tracker <http://bugs.python

[issue11506] b'' += gives SystemError instead of SyntaxError

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11506> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10617] Collections ABCs can’t be linked to

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: Apparently there's no way to change the text generated by the "class" directive, so it's not possible to use it in the table without having the "class" before the names. The alternatives are: 1) define these classes normally in

[issue2650] re.escape should not escape underscore

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: re.escape and its tests can be refactored in 2.7/3.1, the '_' can be added to the list of chars that are not escaped in 3.3. I'll put together a patch and fix this unless someone thinks that the '_' should be escaped in 3.3

[issue11514] Misspelled access

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker <http://bugs.python.org/issue11514> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11515] Misspelled actually

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: If you can easily make a single patch out of all the issues, please do it and submit it here, otherwise I'll apply all the patches and make a single commit. -- nosy: +ezio.melotti ___ Python tracker

[issue11515] Misspelled actually

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti ___ Python tracker <http://bugs.python.org/issue11515> ___ ___ Python-bugs-list mailing list Unsubscri

[issue11514] Misspelled access

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11547] Misspelled builtin

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11547] Misspelled builtin

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- superseder: -> Misspelled actually ___ Python tracker <http://bugs.python.org/issue11547> ___ ___ Python-bugs-list mailing list Un

[issue11514] Misspelled access

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- superseder: -> Misspelled actually ___ Python tracker <http://bugs.python.org/issue11514> ___ ___ Python-bugs-list mailing list Un

[issue11546] Misspelled between

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11545] Misspelled backtracking

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11544] Misspelled avoid

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11543] Misspelled available, instances

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11542] Misspelled augmented

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11540] Misspelled assume

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11541] Misspelled attribute

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11539] Misspelled associated

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11538] Misspelled assign

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

[issue11537] Misspelled arguments

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11536] Misspelled arguments 2

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11536] Misspelled arguments 2

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- superseder: -> Misspelled actually ___ Python tracker <http://bugs.python.org/issue11536> ___ ___ Python-bugs-list mailing list Un

[issue11535] Misspelled architecture

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Misspelled actually ___ Python tracker <http://bugs.python

<    5   6   7   8   9   10   11   12   13   14   >