Commit graph

39304 commits

Author SHA1 Message Date
Alexandre Vassalotti
8940ecd39d Added stub for the PixMapWrapper module to be renamed in 3.0.
Modified TestStdlibRenames to support platform specific renames.
Added test for PixMapWrapper rename warning.
Added note to documentation about PixMapWrapper rename.
2008-05-11 20:30:43 +00:00
Andrew M. Kuchling
5128fb9715 Try setting HOME env.var to fix test on Win32 2008-05-11 20:08:33 +00:00
Alexandre Vassalotti
73812bf2a6 Added test for Queue rename warning.
Added note to documentation about Queue rename.
2008-05-11 20:04:03 +00:00
Eric Smith
cf537ff39e Addresses issue 2802: 'n' formatting for integers.
Adds 'n' as a format specifier for integers, to mirror the same
specifier which is already available for floats.  'n' is the same as
'd', but inserts the current locale-specific thousands grouping.

I added this as a stringlib function, but it's only used by str type,
not unicode.  This is because of an implementation detail in
unicode.format(), which does its own str->unicode conversion.  But the
unicode version will be needed in 3.0, and it may be needed by other
code eventually in 2.6 (maybe decimal?), so I left it as a stringlib
implementation.  As long as the unicode version isn't instantiated,
there's no overhead for this.
2008-05-11 19:52:48 +00:00
Alexandre Vassalotti
30ece44f2e Added stub for the Queue module to be renamed in 3.0.
Use the 3.0 module name to avoid spurious warnings.
2008-05-11 19:39:48 +00:00
Andrew M. Kuchling
ca3ccd15ff Add message to test assertion 2008-05-11 19:15:52 +00:00
Benjamin Peterson
e85ae1bbaf broaden .bzrignore 2008-05-11 16:38:07 +00:00
Georg Brandl
ea823a866c #2803: fix wrong invocation of heappush in seldom-reached code.
Thanks to Matt Harden.
2008-05-11 15:20:16 +00:00
Georg Brandl
d063240d91 #2787: Flush stdout after writing test name, helpful when running
hanging or long-running tests. Patch by Adam Olsen.
2008-05-11 15:17:41 +00:00
Georg Brandl
b52a74b517 #2816: clarify error messages for EOF while scanning strings. 2008-05-11 15:07:39 +00:00
Georg Brandl
6a57c08dc8 #1326: document and test zipimporter.archive and zipimporter.prefix. 2008-05-11 15:05:13 +00:00
Georg Brandl
ae98f50eca #2709 followup: better description of Tk's pros and cons. 2008-05-11 14:56:04 +00:00
Georg Brandl
9020ff88e6 Add some sentence endings. 2008-05-11 14:17:13 +00:00
Benjamin Peterson
98353941ea Add the "until" command to pdb 2008-05-11 14:13:25 +00:00
Andrew M. Kuchling
aac5c8669f #1858: re-apply patch for this, adding the missing files 2008-05-11 14:00:00 +00:00
Andrew M. Kuchling
6c02916dfb #1792: Improve performance of marshal.dumps() on large objects by increasing
the size of the buffer more quickly.
2008-05-11 13:33:56 +00:00
Georg Brandl
ab756f60bd #2452: timeout is used for all blocking operations. 2008-05-11 11:09:35 +00:00
Georg Brandl
0aaf559bfe #2741: clarification of value range for address_family. 2008-05-11 10:59:39 +00:00
Georg Brandl
e9135ba79d #2147: PEP 237 changes to overflow behavior. 2008-05-11 10:55:59 +00:00
Georg Brandl
6f95ae55b1 #2659: add `break_on_hyphens` to TextWrapper. 2008-05-11 10:42:28 +00:00
Georg Brandl
5b54887deb #2709: clarification. 2008-05-11 10:33:27 +00:00
Georg Brandl
a36909e10d Fix typo. 2008-05-11 10:13:59 +00:00
Georg Brandl
dfb77dbc70 #2809: elaborate str.split docstring a bit. 2008-05-11 09:11:40 +00:00
Georg Brandl
53905d8f7f #1153769: document PEP 237 changes to string formatting. 2008-05-11 09:06:30 +00:00
Alexandre Vassalotti
25ad76c91d Added test for copy_reg rename.
Added note to documentation about copy_reg rename.
2008-05-11 09:01:51 +00:00
Georg Brandl
2ac747c05a #2812: document property.getter/setter/deleter. 2008-05-11 08:47:53 +00:00
Alexandre Vassalotti
9510e4a9f8 Added module stub for copy_reg renaming in 3.0.
Renamed copy_reg to copyreg in the standard library, to avoid
spurious warnings and ease later merging to py3k branch. Public
documentation remains intact.
2008-05-11 08:25:28 +00:00
Alexandre Vassalotti
f602c71b07 Removed a dead line of code. 2008-05-11 07:10:25 +00:00
Alexandre Vassalotti
445ff35d5c Fixed typo in a comment of test_support.CleanImport. 2008-05-11 07:08:12 +00:00
Georg Brandl
d809603623 #2742: `''` is not converted to NULL in getaddrinfo. 2008-05-11 07:06:05 +00:00
Alexandre Vassalotti
eb83f70586 Added test framework for handling module renames.
Factored the import guard in test_py3kwarn.TestStdlibRemovals into
a context manager, namely test_support.CleanImport.
2008-05-11 07:06:04 +00:00
Georg Brandl
605a0c6f7f reload() takes the module itself. 2008-05-11 07:02:17 +00:00
Brett Cannon
2a86913864 Deprecated the mhlib module for removal in 3.0. 2008-05-11 03:01:47 +00:00
Skip Montanaro
79964cf64f Copied two versions of the example from the interactive session. Delete
one.
2008-05-11 02:59:30 +00:00
Brett Cannon
7595c1a36b Flesh out the 3.0 deprecation to suggest using the ctypes module. 2008-05-11 01:09:32 +00:00
Brett Cannon
a975cd446e Fix up markup in the deprecation notice. 2008-05-11 01:06:54 +00:00
Brett Cannon
df0a717037 The linuxaudidev module has been deprecated for removal in Python 3.0. 2008-05-11 00:50:51 +00:00
Brett Cannon
27508d4eb9 Deprecate ihooks for removal in 3.0. 2008-05-10 22:45:07 +00:00
Andrew M. Kuchling
2bca212239 #1858: add distutils.config module 2008-05-10 22:12:38 +00:00
Brett Cannon
fe5985188d Deprecate the fpformat module for removal in 3.0. 2008-05-10 22:11:45 +00:00
Brett Cannon
e35a3a1d6b Add an entry for the deprecation of the dl module. 2008-05-10 21:22:43 +00:00
Brett Cannon
7f874fce63 Deprecate the dl module for removal in 3.0. 2008-05-10 21:20:19 +00:00
Brett Cannon
0aa6e1b8fb Deprecate the dircache module for 3.0. 2008-05-10 21:12:57 +00:00
Brett Cannon
10f5db6424 Revert r62998 as it broke the build (seems distutils.config is missing). 2008-05-10 20:52:01 +00:00
Alexandre Vassalotti
844f757aae Cleaned up io._BytesIO.write().
I am amazed that the old code, for inserting null-bytes, actually
worked. Who wrote that thing? Oh, it is me... doh.
2008-05-10 19:59:16 +00:00
Andrew M. Kuchling
cd8001c8ed #1858 from Tarek Ziade:
Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI
for discussion.

The patch is slightly revised from Tarek's last patch: I've simplified
the PyPIRCCommand.finalize_options() method to not look at sys.argv.
Tests still pass.
2008-05-10 19:51:55 +00:00
Andrew M. Kuchling
4ff7fc49c6 #1625509: describe behaviour of import lock 2008-05-10 17:48:45 +00:00
Andrew M. Kuchling
311c580539 Document the 'line' argument 2008-05-10 17:37:05 +00:00
Andrew M. Kuchling
5217d5d678 Docstring typo 2008-05-10 17:36:24 +00:00
Skip Montanaro
45f585915e Note the PyPI-edness of bsddb185 for people who might still need it. 2008-05-10 14:48:49 +00:00