[Python-Dev] [Python-checkins] cpython (2.7): Fix stock symbol for Microsoft (original) (raw)
Victor Stinner victor.stinner at haypocalc.com
Tue Jan 10 14:08:52 CET 2012
- Previous message: [Python-Dev] AUTO: Jon K Peck is out of the office (returning 01/12/2012)
- Next message: [Python-Dev] Sphinx version for Python 2.x docs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
You may port the fix to 3.2 and 3.3.
Victor
2012/1/10 raymond.hettinger <python-checkins at python.org>:
http://hg.python.org/cpython/rev/068ce5d7f7e7 changeset: 74320:068ce5d7f7e7 branch: 2.7 user: Raymond Hettinger <python at rcn.com> date: Tue Jan 10 09:51:51 2012 +0000 summary: Fix stock symbol for Microsoft
files: Doc/library/sqlite3.rst | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -66,7 +66,7 @@ # Larger example for t in [('2006-03-28', 'BUY', 'IBM', 1000, 45.00), - ('2006-04-05', 'BUY', 'MSOFT', 1000, 72.00), + ('2006-04-05', 'BUY', 'MSFT', 1000, 72.00), ('2006-04-06', 'SELL', 'IBM', 500, 53.00), ]: c.execute('insert into stocks values (?,?,?,?,?)', t) @@ -86,7 +86,7 @@ (u'2006-01-05', u'BUY', u'RHAT', 100, 35.14) (u'2006-03-28', u'BUY', u'IBM', 1000, 45.0) (u'2006-04-06', u'SELL', u'IBM', 500, 53.0) - (u'2006-04-05', u'BUY', u'MSOFT', 1000, 72.0) + (u'2006-04-05', u'BUY', u'MSFT', 1000, 72.0) >>>
-- Repository URL: http://hg.python.org/cpython
Python-checkins mailing list Python-checkins at python.org http://mail.python.org/mailman/listinfo/python-checkins
- Previous message: [Python-Dev] AUTO: Jon K Peck is out of the office (returning 01/12/2012)
- Next message: [Python-Dev] Sphinx version for Python 2.x docs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]