[issue9160] Documentation link of 3.2 not working at docs.python.org

2010-07-05 Thread Georg Brandl
Georg Brandl added the comment: 3.1.1 docs are fixed. Development docs will be rebuilt soon automatically; after that everything should work again. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker

[issue9136] RuntimeError when profiling Decimal

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: > I don't quite understand the point of catching NameError here So that the initialization of DefaultContext itself doesn't fail. -- ___ Python tracker ___

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread Craig McQueen
Craig McQueen added the comment: To further explain, I had code e.g.: parser.add_option(u'-s', u'--seqfile', dest='seq_file_name', help=u'Write sequence file output to FILE', metavar=u'FILE') I had to remove the unicode designator for the first parameter: parser.add_option('-s', u'--s

[issue9163] test_gdb fails

2010-07-05 Thread Michael Blume
New submission from Michael Blume : After building Python 2.7 on two separate X68 Ubuntu boxes, test_gdb failed both times. ./configure make make test output follows: test_gdb test test_gdb failed -- Traceback (most recent call last): File "/home/mike/workspace/Python-2.7/Lib/test/test_gdb

[issue8912] `make patchcheck` should check the whitespace of .c/.h files

2010-07-05 Thread Brett Cannon
Brett Cannon added the comment: On Sun, Jul 4, 2010 at 22:40, Éric Araujo wrote: > > Éric Araujo added the comment: > > Sorry if I was unclear. Out of the four points I listed, this patch only did > the refactoring (4). I have another patch to add and use a check_pep7 > function, I’ll refres

[issue9163] test_gdb fails

2010-07-05 Thread Martin v . Löwis
Martin v. Löwis added the comment: Dave, can you please take a look? -- assignee: -> dmalcolm nosy: +dmalcolm, loewis ___ Python tracker ___

[issue9164] 2.7 sysconfig should handle arch duplicates

2010-07-05 Thread Jyrki Wahlstedt
New submission from Jyrki Wahlstedt : Hi, in building Python 2.7 (using MacPorts)I end up in a situation that the build stops in sysconfig.py due to duplicate arch args on compile line. Compiling stops, because there is no way to find machine value from ('i386', 'i386', 'x86_64', 'x86_64'). Th

[issue9091] str.capitalize() should not lower the rest of the string

2010-07-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed it in r82570. Hyper linking lowered was leading to something like str.lower ed. So, I simply left it. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tra

[issue9162] License for multiprocessing files

2010-07-05 Thread Éric Araujo
Éric Araujo added the comment: Third-party code contributed to the stdlib is covered by an agreement that allows PSF to use it under PSF license. Comments in multiprocessing files can just be removed (this happened for argparse some time ago). Thanks for noticing this! -- keywords: +

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok stage: unit test needed -> type: behavior -> ___ Python tracker ___ ___ Python-bugs-list ma

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> unit test needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue834840] Unhelpful error message from cgi module

2010-07-05 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9155] Reserve COMPARE_OP for rich comparisons

2010-07-05 Thread Éric Araujo
Changes by Éric Araujo : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/optio

[issue9091] str.capitalize() should not lower the rest of the string

2010-07-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: Updated the docstrings in r82573. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue9162] License for multiprocessing files

2010-07-05 Thread Stefan Krah
Stefan Krah added the comment: Éric, I don't think it's that simple. The author still has the copyright, even if he licensed the files under the contributor agreement. At the very least you have to leave his name and copyright notice. -- nosy: +skrah __

[issue2118] smtplib.SMTP() raises socket.error rather than SMTPConnectError

2010-07-05 Thread Geoffrey Bache
Changes by Geoffrey Bache : -- nosy: +gjb1002 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue9155] Reserve COMPARE_OP for rich comparisons

2010-07-05 Thread Demur Rumed
Demur Rumed added the comment: I've fixed the segfaulting in IN and NOT_IN, though the code requires cleaning due to the obtusely cargo culted nature of those opcodes I'm also including an incrementation which completely removes COMPARE_OP, using the opcode to determine the comparison type. A

[issue9153] Run tests and demos as part of the test suite

2010-07-05 Thread Nick Coghlan
Nick Coghlan added the comment: Yep, a sanity check for these is a good idea, and doing it soon gives us plenty of time to work out the kinks with it before 3.2a1. It will also let us identify which ones are completely busted by the switch to Python 3 (syntax errors) and which have other issu

[issue7962] Demo and Tools need to be tested and pruned

2010-07-05 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue4679] Fork + shelve causes shelve corruption and backtrace

2010-07-05 Thread R. David Murray
R. David Murray added the comment: Also note that bsddb's version was bumped in 2.7, so this bug may indeed be out of date. Alex, if you can't reproduce it (or don't have any desire to try to do so), we will close this as out of date. -- nosy: +jcea, r.david.murray status: open -> pe

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue3268] Cleanup of tp_basicsize inheritance

2010-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Thanks. r82577. -- nosy: +benjamin.peterson resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue8470] Let cmd.cmd.intro be unicode friendly

2010-07-05 Thread R. David Murray
R. David Murray added the comment: If someone wants to try arguing that this is a bug fix (and can provide a patch that does not change existing behavior), then we could reopen it, but as a feature request it is closed for 2.7. -- components: +Library (Lib) nosy: +r.david.murray resol

[issue9165] Add math.isfinite()

2010-07-05 Thread Benjamin Peterson
New submission from Benjamin Peterson : It would be equivalent to "not isinf(x) and not isnan(x)". -- components: Extension Modules messages: 109324 nosy: benjamin.peterson priority: low severity: normal status: open title: Add math.isfinite() versions: Python 3.2 __

[issue2675] Curses terminal resize problems when Python is in interactive mode

2010-07-05 Thread R. David Murray
R. David Murray added the comment: Well, I can run it, but I have no idea what it is telling me or how it demonstrates a bug. Pavel, is this still a problem in 2.6/2.7? -- components: +Extension Modules -None nosy: +akuchling, r.david.murray stage: -> unit test needed __

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: +1. This is natural counterpart to math.isinf and math.isnan. In fact, it's quite surprising to have those two functions available and not math.isfinite. Here's a patch. -- assignee: -> mark.dickinson keywords: +patch nosy: +mark.dickinson stage:

[issue9166] minor misstatement in What's New in 2.7

2010-07-05 Thread Daniel Stutzbach
New submission from Daniel Stutzbach : "Finally, the Mapping abstract base class now raises a NotImplemented exception..." should read "returns" instead of "raises" Here's the relevant code patch: http://svn.python.org/view/python/trunk/Lib/_abcoll.py?r1=78800&r2=81414&pathrev=81414 -

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: Version 2 of patch adds cmath.isfinite, and changes doc markup to use ``True`` instead of :const:`True` (thanks Benjamin!). -- Added file: http://bugs.python.org/file17868/isfinite_v2.patch ___ Python tracker

[issue9005] Year range in timetuple

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Reopening to consider removing a special case in days_before_year(..). After r82128, year cannot be <= 0. -- stage: committed/rejected -> commit review status: closed -> open Added file: http://bugs.python.org/file17869/issue9005c.diff

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Changes by Mark Dickinson : Added file: http://bugs.python.org/file17870/isfinite_v2.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9165] Add math.isfinite()

2010-07-05 Thread Mark Dickinson
Changes by Mark Dickinson : Removed file: http://bugs.python.org/file17868/isfinite_v2.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue9165] Add math.isfinite()

2010-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread R. David Murray
R. David Murray added the comment: Too bad you didn't find this on one of the RCs. The fix will have to wait for 2.7.1 now. The line you originally quote as changing was, as far as I can tell, the original code (it enters our repository on 2006-04-22 in r45654 when optparse was upgraded to

[issue9136] RuntimeError when profiling Decimal

2010-07-05 Thread Stefan Krah
Stefan Krah added the comment: Alexander, for me the ternary expressions have the advantage that they take up less vertical space and you have to keep less state in mind. Mark, I'm sidestepping the dict syntax question and reassign to you :) -- assignee: skrah -> mark.dickinson _

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread R. David Murray
R. David Murray added the comment: Regression fixed in r82581. It would be nice to have a unit test, so I'm leaving this open to see if anyone wants to contribute one (it could probably be reused for argparse if argparse doesn't already have such a test). --

[issue9167] argv double encoding on OSX

2010-07-05 Thread Daniele Varrazzo
New submission from Daniele Varrazzo : Looks like the wchar_t* array returned by Py_GetArgcArgv() on OSX suffers by double encoding. This can affect sys.argv, sys.executable and C code relying on the above function of course. On Linux: $ python3 Python 3.0rc1+ (py3k, Oct 28 2008, 09:22:29) [

[issue3964] quiet the freeze makefile

2010-07-05 Thread R. David Murray
R. David Murray added the comment: In my experience makes are generally pretty noisy, so I doubt it. But I don't use freeze, so we'd really need a review from someone who does. -- nosy: +r.david.murray stage: -> patch review versions: +Python 3.2 _

[issue9168] setuid in smtp.py sheds privileges before binding port

2010-07-05 Thread Alberto Trevino
New submission from Alberto Trevino : The SMTP proxy server in Python (smtpd.py) allows you to shed privileges and run as user nobody. However, if you are trying to use port 25, the server will shed privileges before binding the port, causing a bind failure. By moving the setuid code between t

[issue8739] Update to smtpd.py to RFC 5321

2010-07-05 Thread Alberto Trevino
Alberto Trevino added the comment: What is the status of this patch? Is there anything else I need to do? Any remaining concerns that would stop this patch from being merged? -- ___ Python tracker

[issue9167] argv double encoding on OSX

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue8739] Update to smtpd.py to RFC 5321

2010-07-05 Thread R. David Murray
R. David Murray added the comment: Yes, the fact that there are no unit tests for the new functionality. As far as I can see the existing smtpd tests (which don't appear to be too extensive...but this module probably dates from before we had a firm unit test policy), are in test_smtplib. --

[issue9167] argv double encoding on OSX

2010-07-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ronaldoussoren components: +Macintosh, Unicode nosy: +ezio.melotti, ronaldoussoren stage: -> unit test needed ___ Python tracker ___ __

[issue9169] Deprecate use of more than 3 positional arguments in timedelta constructor

2010-07-05 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : Prior to r82454, python implementation of timedelta had the following comment: class timedelta: def __new__(cls, days=0, seconds=0, microseconds=0, # XXX The following should only be used as keyword args:

[issue9162] License for multiprocessing files

2010-07-05 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +roudkerk resolution: accepted -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue9005] Year range in timetuple

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Similarly, it appears that if (*m < 1 || *m > 12) { --*m; normalize_pair(y, m, 12); ++*m; /* |y| can't be bigger than about

[issue9168] setuid in smtp.py sheds privileges before binding port

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

[issue9169] Deprecate use of more than 3 positional arguments in timedelta constructor

2010-07-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: > This would be a backward incompatible change, so it would need to go > through a deprecation process, but I think someone writing > > HOUR = timedelta(0, 0, 0, 0, 0, 1) > > or > > WEEK = timedelta(0, 0, 0, 0, 0, 0, 1) > > deserves a deprecation warning. -

[issue9170] zipfile.extractall raises runtime error on correct password

2010-07-05 Thread Andrew Miller
New submission from Andrew Miller : On a WinZip AES-256 encrypted zip, zipfile.extractall raises a RuntimeError for "Bad password for file" when given the correct password. Command line example below: Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] on linux2 Type "help", "co

[issue9171] sysconfig module does not support -m option

2010-07-05 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' : http://docs.python.org/dev/library/sysconfig.html#using-sysconfig-as-a-script The doc states that sysconfig module con be used with python's -m option but this doesn't work: giampa...@ubuntu:~/svn/python-2.7$ python -m sysconfig giampa...@ubuntu:~/svn/py

[issue9166] minor misstatement in What's New in 2.7

2010-07-05 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r82587. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue9169] Deprecate use of more than 3 positional arguments in timedelta constructor

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Mon, Jul 5, 2010 at 1:39 PM, Antoine Pitrou wrote: .. > -1 from me. Deprecating correct code should be done for serious > reasons, not aesthetical (i.e. gratuitous) ones. I would think that deprecating error-prone constructs is well within normal lib

[issue9153] Run tests and demos as part of the test suite

2010-07-05 Thread Shashwat Anand
Changes by Shashwat Anand : -- nosy: +l0nwlf ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9161] add_option in optparse no longer accepts unicode string

2010-07-05 Thread Shashwat Anand
Changes by Shashwat Anand : -- nosy: +l0nwlf ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9172] zipfile.extractall always raises an OSError after successfully unzipping all files

2010-07-05 Thread Andrew Miller
New submission from Andrew Miller : Tried it with a variety of unencrypted zips. Zipped with WinZip 11.1. Looks like it tries to unzip a second time after it completes the first unzip. Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] on linux2 Type "help", "copyright", "credit

[issue5288] tzinfo objects with sub-minute offsets are not supported (e.g. UTC+05:53:28)

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am attaching a test coverage file for the patched datetimemodule.c. -- Added file: http://bugs.python.org/file17874/datetimemodule.c.gcov ___ Python tracker ___

[issue5288] tzinfo objects with sub-minute offsets are not supported (e.g. UTC+05:53:28)

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: It looks like I attached coverage for the original file. See new-datetimemodule.c.gcov for coverage after the change. -- Added file: http://bugs.python.org/file17875/new-datetimemodule.c.gcov ___ Python track

[issue9158] PyArg_ParseTuple y* documentation is incorrect

2010-07-05 Thread Terrence Cole
Terrence Cole added the comment: @Victor: "y* and z* result is a Py_buffer" Correct, so why is z* documented as [Py_buffer] and y* documented as [Py_buffer*]? If I make 'buffer' from your example a Py_buffer*, as documented, then python puts writes sizeof(Py_buffer) bytes into a random spot

[issue9004] datetime.utctimetuple() should not set tm_isdst flag to 0

2010-07-05 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue8930] messed up formatting after reindenting

2010-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: There is also some unpretty formatting in _math.c. -- ___ Python tracker ___ ___ Python-bugs-list

[issue4679] Fork + shelve causes shelve corruption and backtrace

2010-07-05 Thread Alex Roper
Alex Roper added the comment: Go ahead "R. David Murray" wrote: > >R. David Murray added the comment: > >Also note that bsddb's version was bumped in 2.7, so this bug may indeed be >out of date. Alex, if you can't reproduce it (or don't have any desire to try >to do so), we will close thi

[issue4679] Fork + shelve causes shelve corruption and backtrace

2010-07-05 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue5476] datetime: timedelta(minutes = i) silently fails with numpy.int32 input

2010-07-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: This is a bit strange. timedelta is accepting int subclass instances: >>> class I(int): ...pass ... >>> timedelta(days = I(36)) datetime.timedelta(36) but not numpy.unt_: >>> timedelta(days = int_(36)) Traceback (most recent call last): File

[issue8930] messed up formatting after reindenting

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: I've fixed the _math.c formatting (r82595, r82596). -- nosy: +mark.dickinson ___ Python tracker ___

[issue1571170] Some numeric characters are still not recognized

2010-07-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9171] sysconfig module does not support -m option

2010-07-05 Thread Éric Araujo
Éric Araujo added the comment: Nice catch. I found nothing in the VCS log, nor in distutils2._backport.sysconfig, so it doesn’t seem to have been removed but just overlooked. -- assignee: -> tarek components: +Library (Lib) keywords: +easy nosy: +merwok -tarek-ziade resolution: -> a

[issue9171] sysconfig module does not support -m option

2010-07-05 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Remove the statement from the doc for now and get it back along a module fix in 2.7.1: can it be a reasonable solution? -- ___ Python tracker __

[issue8905] difflib should accept arbitrary line iterators

2010-07-05 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue7582] Use ISO timestamp in diff.py

2010-07-05 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9165] Add math.isfinite()

2010-07-05 Thread Eric Smith
Eric Smith added the comment: +1 from me, too. You might want to reference this issue in the Misc/NEWS entry. -- nosy: +eric.smith ___ Python tracker ___ ___

[issue9158] PyArg_ParseTuple y* documentation is incorrect

2010-07-05 Thread STINNER Victor
STINNER Victor added the comment: Oh ok, sorry. Fixed in r82597 (3.x) and r82598 (3.1). -- resolution: invalid -> fixed ___ Python tracker ___ ___

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-07-05 Thread Vlastimil Brom
Vlastimil Brom added the comment: I just noticed a somehow strange behaviour in matching character sets or alternate matches which contain some more "advanced" unicode characters, if they are in the search pattern with some "simpler" ones. The former seem to be ignored and not matched (the or

[issue9171] sysconfig module does not support -m option

2010-07-05 Thread Éric Araujo
Éric Araujo added the comment: Found: r81513 Made sysconfig a script that displays useful information - #8770 -- ___ Python tracker ___ __

[issue9155] Reserve COMPARE_OP for rich comparisons

2010-07-05 Thread Demur Rumed
Demur Rumed added the comment: It seems the lack of benefits from replacing COMPARE_OP with a set of aliased bytecodes was repairable through TARGET_WITH_IMPL. Also fixed was the lack of amendments to dis -- versions: -Python 3.3 Added file: http://bugs.python.org/file17876/cmpoprotd

[issue9158] PyArg_ParseTuple y* documentation is incorrect

2010-07-05 Thread Terrence Cole
Terrence Cole added the comment: Awesome! Thanks, and sorry for communicating the problem so poorly initially. -- ___ Python tracker ___

[issue9169] Deprecate use of more than 3 positional arguments in timedelta constructor

2010-07-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I would think that deprecating error-prone constructs is well within > normal library evolution. For example, several interfaces that > accepted floats by truncating them to ints were deprecated in the > past. That's because silent truncation to int will lea

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-07-05 Thread Matthew Barnett
Matthew Barnett added the comment: issue2636-20100706.zip is a new version of the regex module. I've added your examples to the unit tests. The module now passes. Keep up the good work! :-) -- Added file: http://bugs.python.org/file17877/issue2636-20100706.zip ___

[issue9173] logger statement not guarded in shutil._make_tarball

2010-07-05 Thread Paul Smith
New submission from Paul Smith : A called to logger.info() in shutil._make_tarball is not guarded against the logger being None, and therefore raises an AttributeError if that is the case. -- components: Library (Lib) files: shutil_logger_py27.patch keywords: patch messages: 109364 nosy

[issue9174] unittest assertEqual error output sub-optimal for single strings

2010-07-05 Thread R. David Murray
New submission from R. David Murray : When assertEqual is called on a pair of strings, then in Python3 assertMultiLineEqual is called. This function calls ndiff to display a nicely formatted multiline comparison of the strings, which would make it very easy to spot the differences...if it wor

[issue7899] MemoryError While Executing Python Code

2010-07-05 Thread Peter Wolf
Peter Wolf added the comment: I am new to this so apologies if I posting this in the wrong spot. I am also getting a memory error on an 86MB python data file.It is one long list.As far as I can tell the data file is valid python code.My computer has 3.4 GB of ram. When I type the following i