Benjamin Peterson
c237f8e0ce
Merged revisions 66470 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r66470 | benjamin.peterson | 2008-09-15 18:29:43 -0500 (Mon, 15 Sep 2008) | 1 line
don't use os.linesep for newlines; it breaks tests on windows
........
2008-09-15 23:55:01 +00:00
Andrew M. Kuchling
687dfd20d6
Rewrite item a bit
2008-09-15 13:08:32 +00:00
Benjamin Peterson
c272362747
mention that object.__init__ no longer takes arbitrary args and kwargs
2008-09-15 02:53:23 +00:00
Skip Montanaro
9feab31d98
Pick up a few more definitions from the glossary on the wiki.
2008-09-15 02:19:53 +00:00
Skip Montanaro
f02c5f3d4e
Review usage. Fix a mistake in the new-style class definition. Add a
...
couple new definitions (CPython and virtual machine).
2008-09-15 02:03:05 +00:00
Martin v. Löwis
0c280c0127
Fix grammar.
2008-09-15 01:30:21 +00:00
Martin v. Löwis
b080256074
Set eol-style to native.
2008-09-14 20:25:40 +00:00
Martin v. Löwis
4eb18f9d5d
Issue #3617 : Include a licensing statement regarding the Microsoft C runtime in the Windows installer.
2008-09-14 20:22:39 +00:00
Benjamin Peterson
881c4878cb
clarify that radix for int is not 'guessed'
2008-09-14 16:02:22 +00:00
Benjamin Peterson
5f671dfa69
fix a name issue; note all doc files should be encoded in utf8
2008-09-13 22:54:43 +00:00
Antoine Pitrou
3c9f541ef8
Issue #3850 : Misc/find_recursionlimit.py was broken.
...
Reviewed by A.M. Kuchling.
2008-09-13 20:30:30 +00:00
Benjamin Peterson
d51e07f989
Merged revisions 66191,66418,66438,66445 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r66191 | benjamin.peterson | 2008-09-03 17:00:52 -0500 (Wed, 03 Sep 2008) | 1 line
update the Grammar file after recent syntax changes
........
r66418 | benjamin.peterson | 2008-09-12 18:49:48 -0500 (Fri, 12 Sep 2008) | 1 line
a trival fix to get a few more print corner cases #2899
........
r66438 | benjamin.peterson | 2008-09-12 21:32:30 -0500 (Fri, 12 Sep 2008) | 5 lines
add Jack Diederich's fixer for metaclass syntax #2366
my contribution to this was adding a few tests and fixing a few bugs
I also reviewed it (Jack is a committer)
........
r66445 | benjamin.peterson | 2008-09-13 10:50:00 -0500 (Sat, 13 Sep 2008) | 1 line
add a few more tests concerning int literals and weird spacing
........
2008-09-13 17:43:19 +00:00
Georg Brandl
9af9498c6e
Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.
2008-09-13 17:41:16 +00:00
Benjamin Peterson
f2a2c796e3
remove duplicate target
2008-09-13 17:31:08 +00:00
Georg Brandl
3ce0dee9a3
Incorporate some suggestions by Tait Stevens.
2008-09-13 17:18:11 +00:00
Martin v. Löwis
a9aff014a8
Change product code of Win64 installer to allow simultaneous installation on Win32 and Win64; also change product name to be able to distinguish the two in ARP.
2008-09-13 08:36:22 +00:00
Martin v. Löwis
ab0b29bd81
Issue #3833 : Use a different upgrade code for Win64 installers.
2008-09-13 08:11:57 +00:00
Andrew M. Kuchling
54bdbadf76
Use title case
2008-09-13 02:14:15 +00:00
Andrew M. Kuchling
09e80938b0
#3288 : Document as_integer_ratio
2008-09-13 02:11:51 +00:00
Andrew M. Kuchling
bf64c0411f
Remove extra 'the'; the following title includes it
2008-09-13 02:09:15 +00:00
Andrew M. Kuchling
64fc6aee99
Use title case
2008-09-13 02:08:30 +00:00
Andrew M. Kuchling
d9a9c1066c
Update uses of string exceptions
2008-09-13 01:57:25 +00:00
Andrew M. Kuchling
0bef15846f
Fix SyntaxError
2008-09-13 01:56:56 +00:00
Andrew M. Kuchling
c997f178ed
Subclass exception
2008-09-13 01:48:36 +00:00
Andrew M. Kuchling
dda0ce7285
Remove semicolon
2008-09-13 01:47:02 +00:00
Andrew M. Kuchling
2a9b9cbea0
#687648 from Robert Schuppenies: use classic division.
2008-09-13 01:43:28 +00:00
Andrew M. Kuchling
e91fcbdf69
#687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons
2008-09-13 01:42:55 +00:00
Andrew M. Kuchling
8bd9a2f7db
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section
2008-09-13 01:34:41 +00:00
Andrew M. Kuchling
c2dc269288
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing
2008-09-13 01:27:33 +00:00
Andrew M. Kuchling
949f71b446
#687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.)
2008-09-13 01:22:08 +00:00
Barry Warsaw
dfd6b86d6b
post release updates
2008-09-13 01:12:18 +00:00
Barry Warsaw
019648834e
Tagging 2.6rc1
2008-09-13 00:03:14 +00:00
Barry Warsaw
f5f9d99974
Fix the release level
2008-09-12 23:35:48 +00:00
Barry Warsaw
1e62aec3ed
Bumping to 2.6rc1
2008-09-12 23:25:57 +00:00
Gerhard Häring
e6872eb417
Issue #3846 : Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
2008-09-12 22:33:22 +00:00
Gerhard Häring
6e1afcf988
Fixes issue #3103 . In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
2008-09-12 18:58:57 +00:00
Gerhard Häring
ef2276b60d
sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
2008-09-12 13:54:06 +00:00
Benjamin Peterson
b535d32952
fix typo
2008-09-11 22:04:02 +00:00
Amaury Forgeot d'Arc
24cb382455
#3640 : Correct a crash in cPickle on 64bit platforms, in the case of deeply nested lists or dicts.
...
Reviewed by Martin von Loewis.
2008-09-11 20:56:13 +00:00
Nick Coghlan
d2e0938362
Issue #3781 : Final cleanup of warnings.catch_warnings and its usage in the test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon)
2008-09-11 12:11:06 +00:00
Martin v. Löwis
9fa5a2828c
Issue #3642 : Suppress warning in obmalloc when size_t is
...
larger than uint. Reverts r65975. Reviewed by Brett Cannon.
2008-09-11 06:53:30 +00:00
Benjamin Peterson
84076d8a11
update asdl_c.py from r66377
2008-09-10 22:28:00 +00:00
Amaury Forgeot d'Arc
05e344954d
#3743 : PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not for
...
PyString_FromFormat which has an independent implementation, and uses "%zd".
This makes a difference on win64, where printf needs "%Id" to display
64bit values. For example, queue.__repr__ was incorrect.
Reviewed by Martin von Loewis.
2008-09-10 22:04:45 +00:00
Martin v. Löwis
4dd3a50ca4
Read unidata_version from unicodedata module.
...
Delete old NormalizationTest.txt if it doesn't match
unidata_version.
2008-09-10 19:16:35 +00:00
Martin v. Löwis
6d5ec2474d
Update to test Unicode 5.1.
2008-09-10 18:43:49 +00:00
Guido van Rossum
e3c4fd9cc0
- Issue #3629 : Fix sre "bytecode" validator for an end case.
...
Reviewed by Amaury.
2008-09-10 14:27:00 +00:00
Martin v. Löwis
24329ba176
Issue #3811 : The Unicode database was updated to 5.1.
...
Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
2008-09-10 13:38:12 +00:00
Benjamin Peterson
9ba7a309be
use the latest pygments version
2008-09-09 23:16:48 +00:00
Benjamin Peterson
97179b0f58
Fix #3634 invalid return value from _weakref.ref(Exception).__init__
...
Reviewers: Amaury, Antoine, Benjamin
2008-09-09 20:55:01 +00:00
Georg Brandl
c0f10f34b1
#3472 : update Mac-bundled Python version info.
2008-09-09 20:28:31 +00:00