]> granicus.if.org Git - python/log
python
14 years agoRemoved fcmp and FUZZ from test.support, following the discussion on python-dev:
Eli Bendersky [Fri, 25 Feb 2011 10:14:17 +0000 (10:14 +0000)]
Removed fcmp and FUZZ from test.support, following the discussion on python-dev:
http://mail.python.org/pipermail/python-dev/2011-January/107735.html

14 years agoIssue #10516: adding list.clear() and list.copy() methods
Eli Bendersky [Fri, 25 Feb 2011 05:47:53 +0000 (05:47 +0000)]
Issue #10516: adding list.clear() and list.copy() methods

14 years agoAdds Python 3.3 what's new document.
Giampaolo Rodolà [Thu, 24 Feb 2011 20:59:48 +0000 (20:59 +0000)]
Adds Python 3.3 what's new document.

14 years agoIssue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
Antoine Pitrou [Thu, 24 Feb 2011 20:50:49 +0000 (20:50 +0000)]
Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
a buffer struct having a NULL data pointer.

14 years agoIssue #11286: Fixed unpickling of empty 2.x strings.
Alexander Belopolsky [Thu, 24 Feb 2011 19:40:09 +0000 (19:40 +0000)]
Issue #11286: Fixed unpickling of empty 2.x strings.

14 years agoAllow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini...
Éric Araujo [Thu, 24 Feb 2011 18:03:10 +0000 (18:03 +0000)]
Allow usage of SomeABC.register as a class decorator.  Patch by Edoardo Spadolini (#10868).

14 years agorewrite
Benjamin Peterson [Thu, 24 Feb 2011 02:53:05 +0000 (02:53 +0000)]
rewrite

14 years agothis seems to be pointlessly nested
Benjamin Peterson [Thu, 24 Feb 2011 02:46:00 +0000 (02:46 +0000)]
this seems to be pointlessly nested

14 years agoMerged revisions 88535 via svnmerge from
Benjamin Peterson [Thu, 24 Feb 2011 01:41:46 +0000 (01:41 +0000)]
Merged revisions 88535 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line

  Add lib2to3.__main__ for easy testing from the console.
........

14 years agoIssue #11304: Input/output tutorial - PI is rounded not truncated.
Raymond Hettinger [Thu, 24 Feb 2011 00:08:13 +0000 (00:08 +0000)]
Issue #11304: Input/output tutorial - PI is rounded not truncated.

14 years agoRevert r88503 as Benjamin's request.
Brett Cannon [Wed, 23 Feb 2011 18:48:52 +0000 (18:48 +0000)]
Revert r88503 as Benjamin's request.

14 years agoIssue #3080: Fix test_reprlib on Windows
Victor Stinner [Wed, 23 Feb 2011 14:14:48 +0000 (14:14 +0000)]
Issue #3080: Fix test_reprlib on Windows

Fix the test for last module changes (r88520).

14 years agoIssue #11272: Fix input() and sys.stdin for Windows newline
Victor Stinner [Wed, 23 Feb 2011 12:07:37 +0000 (12:07 +0000)]
Issue #11272: Fix input() and sys.stdin for Windows newline

On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses
universal newline (replace '\r\n' by '\n').

14 years agoIssue #11224: Improved sparse file read support (r85916) introduced a
Lars Gustäbel [Wed, 23 Feb 2011 11:42:22 +0000 (11:42 +0000)]
Issue #11224: Improved sparse file read support (r85916) introduced a
regression in _FileInFile which is used in file-like objects returned
by TarFile.extractfile(). The inefficient design of the
_FileInFile.read() method causes various dramatic side-effects and
errors:

  - The data segment of a file member is read completely into memory
    every(!) time a small block is accessed. This is not only slow
    but may cause unexpected MemoryErrors with very large files.
  - Reading members from compressed tar archives is even slower
    because of the excessive backwards seeking which is done when the
    same data segment is read over and over again.
  - As a backwards seek on a TarFile opened in stream mode is not
    possible, using extractfile() fails with a StreamError.

14 years agodynload_dl.c: replace tabs by spaces
Victor Stinner [Wed, 23 Feb 2011 11:29:28 +0000 (11:29 +0000)]
dynload_dl.c: replace tabs by spaces

14 years agoAdd tests for the _ChainMap helper class.
Raymond Hettinger [Wed, 23 Feb 2011 07:56:53 +0000 (07:56 +0000)]
Add tests for the _ChainMap helper class.

14 years agoIndent "versionadded" properly.
Georg Brandl [Wed, 23 Feb 2011 07:31:24 +0000 (07:31 +0000)]
Indent "versionadded" properly.

14 years agoAdd new subdirectory to LIBSUBDIRS.
Georg Brandl [Wed, 23 Feb 2011 07:30:12 +0000 (07:30 +0000)]
Add new subdirectory to LIBSUBDIRS.

14 years agoFix imports from collections.abc
Raymond Hettinger [Wed, 23 Feb 2011 00:46:28 +0000 (00:46 +0000)]
Fix imports from collections.abc

14 years agoIssue #3080: Add PyModule_GetNameObject()
Victor Stinner [Wed, 23 Feb 2011 00:21:43 +0000 (00:21 +0000)]
Issue #3080: Add PyModule_GetNameObject()

repr(module) uses %R to format module name and filenames, instead of '%s' and
'%U', so surrogates from undecodable bytes in a filename (PEP 383) are escaped.

14 years agoIssue #3080: Mark _PyImport_FindBuiltin() argument as constant
Victor Stinner [Wed, 23 Feb 2011 00:02:00 +0000 (00:02 +0000)]
Issue #3080: Mark _PyImport_FindBuiltin() argument as constant

And as a consequence, mark also name argument of
_PyImport_FindExtensionUnicode() constant too. But I plan to change this
argument type to PyObject* later.

14 years agoIssue #3080: document encoding used by import functions
Victor Stinner [Tue, 22 Feb 2011 23:38:34 +0000 (23:38 +0000)]
Issue #3080: document encoding used by import functions

14 years agoIssue #3080: Remove unused argument of _PyImport_GetDynLoadFunc()
Victor Stinner [Tue, 22 Feb 2011 23:16:19 +0000 (23:16 +0000)]
Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc()

The first argument, fqname, was not used.

14 years agoIssue #3080: Mark PyWin_FindRegisteredModule() as private
Victor Stinner [Tue, 22 Feb 2011 23:12:28 +0000 (23:12 +0000)]
Issue #3080: Mark PyWin_FindRegisteredModule() as private

This function was not declared in Python public API (in any .h file) and not
documented. Mark it as private to prepare a change of its API.

14 years agoA crypt algorithm may not be available by returning None.
Brett Cannon [Tue, 22 Feb 2011 21:55:51 +0000 (21:55 +0000)]
A crypt algorithm may not be available by returning None.

14 years agoMake Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API
Brett Cannon [Tue, 22 Feb 2011 21:48:06 +0000 (21:48 +0000)]
Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API
by making methods() into a module attribute as it is statically calculated.

14 years agoIssue #11277: finally fix Snow Leopard crash following r88460.
Antoine Pitrou [Tue, 22 Feb 2011 21:42:56 +0000 (21:42 +0000)]
Issue #11277: finally fix Snow Leopard crash following r88460.
(probably an OS-related issue with mmap)

14 years agoFix test.test_crypt.test_methods() to pass on OS X.
Brett Cannon [Tue, 22 Feb 2011 20:17:14 +0000 (20:17 +0000)]
Fix test.test_crypt.test_methods() to pass on OS X.

14 years agoIssue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon [Tue, 22 Feb 2011 20:15:44 +0000 (20:15 +0000)]
Issue #8914: fix various warnings from the Clang static analyzer v254.

14 years agoIn FTP.close() method, make sure to also close the socket object, not only the file.
Giampaolo Rodolà [Tue, 22 Feb 2011 19:24:33 +0000 (19:24 +0000)]
In FTP.close() method, make sure to also close the socket object, not only the file.

14 years agoIn FTP.close() method, make sure to also close the socket object, not only the file.
Giampaolo Rodolà [Tue, 22 Feb 2011 19:24:33 +0000 (19:24 +0000)]
In FTP.close() method, make sure to also close the socket object, not only the file.

14 years agoAdd lib2to3.__main__ to make it easier for debugging purposes to run 2to3.
Brett Cannon [Tue, 22 Feb 2011 19:12:43 +0000 (19:12 +0000)]
Add lib2to3.__main__ to make it easier for debugging purposes to run 2to3.

14 years agosmtlib.py PEP8 normalization via pep8.py script.
Giampaolo Rodolà [Tue, 22 Feb 2011 15:56:20 +0000 (15:56 +0000)]
smtlib.py PEP8 normalization via pep8.py script.

14 years agoIssue #10924: Adding salt and Modular Crypt Format to crypt library.
Sean Reifscheider [Tue, 22 Feb 2011 10:55:44 +0000 (10:55 +0000)]
Issue #10924: Adding salt and Modular Crypt Format to crypt library.

14 years agoIssue #11074: Make 'tokenize' so it can be reloaded.
Brett Cannon [Tue, 22 Feb 2011 03:25:12 +0000 (03:25 +0000)]
Issue #11074: Make 'tokenize' so it can be reloaded.

The module stored away the 'open' object as found in the global namespace
(which fell through to the built-in namespace) since it defined its own 'open'.
Problem is that if you reloaded the module it then grabbed the 'open' defined
in the previous load, leading to code that infinite recursed. Switched to
simply call builtins.open directly.

14 years agoIssue #10512: close the log file in cgi when running tests.
Brett Cannon [Tue, 22 Feb 2011 03:14:12 +0000 (03:14 +0000)]
Issue #10512: close the log file in cgi when running tests.

Thanks to Nadeem Vawda for the find and an initial fix.

14 years agoIssue #10992: make tests pass when run under coverage.
Brett Cannon [Tue, 22 Feb 2011 03:04:06 +0000 (03:04 +0000)]
Issue #10992: make tests pass when run under coverage.

Various tests fail when run under coverage. A primary culprit is refcount tests
which fail as the counts are thrown off by the coverage code. A new decorator
-- test.support.refcount_test -- is used to decorate tests which test refcounts
and to skip them when running under coverage. Other tests simply fail because
of changes in the system (e.g., __local__ suddenly appearing).

Thanks to Kristian Vlaardingerbroek for helping to diagnose the test failures.

14 years agoIgnore __pycache__ in Lib/collections.
Brett Cannon [Tue, 22 Feb 2011 02:42:41 +0000 (02:42 +0000)]
Ignore __pycache__ in Lib/collections.

14 years agoFactor-out common code for helper classes.
Raymond Hettinger [Tue, 22 Feb 2011 01:55:36 +0000 (01:55 +0000)]
Factor-out common code for helper classes.

14 years agoHave the test filename match the module filename.
Raymond Hettinger [Tue, 22 Feb 2011 01:48:33 +0000 (01:48 +0000)]
Have the test filename match the module filename.

14 years agoIssue #11085: Moved collections abstract base classes into a separate module
Raymond Hettinger [Tue, 22 Feb 2011 00:41:50 +0000 (00:41 +0000)]
Issue #11085: Moved collections abstract base classes into a separate module
called collections.abc, following the pattern used by importlib.abc.  For
backwards compatibility, the names continue to also be imported into the
collections module.

14 years agoIssue #4681: Allow mmap() to work on file sizes and offsets larger than
Antoine Pitrou [Mon, 21 Feb 2011 23:41:12 +0000 (23:41 +0000)]
Issue #4681: Allow mmap() to work on file sizes and offsets larger than
4GB, even on 32-bit builds.  Initial patch by Ross Lagerwall, adapted for
32-bit Windows.

14 years agoIssue #10826: Prevent sporadic failure in test_subprocess on Solaris due
Antoine Pitrou [Mon, 21 Feb 2011 21:55:48 +0000 (21:55 +0000)]
Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due
to open door files.

14 years agoFix PyUnicode_FromFormatV("%c") for non-BMP char
Victor Stinner [Mon, 21 Feb 2011 21:13:44 +0000 (21:13 +0000)]
Fix PyUnicode_FromFormatV("%c") for non-BMP char

Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on
narrow build.

14 years agoRemove filename variable from ceval.c
Victor Stinner [Mon, 21 Feb 2011 21:05:50 +0000 (21:05 +0000)]
Remove filename variable from ceval.c

Issue #11168: Remove filename debug variable from PyEval_EvalFrameEx().
It encoded the Unicode filename to UTF-8, but the encoding fails on
undecodable filename (on surrogate characters) which raises an unexpected
UnicodeEncodeError on recursion limit.

14 years agocompileall uses repr() to format filenames/paths
Victor Stinner [Mon, 21 Feb 2011 20:58:02 +0000 (20:58 +0000)]
compileall uses repr() to format filenames/paths

Issue #11169: compileall module uses repr() to format filenames and paths to
escape surrogate characters and show spaces.

14 years agoRemove bootstrap code of PyUnicode_AsEncodedString()
Victor Stinner [Mon, 21 Feb 2011 20:51:28 +0000 (20:51 +0000)]
Remove bootstrap code of PyUnicode_AsEncodedString()

Issue #11187: Remove bootstrap code (use ASCII) of
PyUnicode_AsEncodedString(), it was replaced by a better fallback (use
the locale encoding) in PyUnicode_EncodeFSDefault().

Prepare also empty sections in NEWS.

14 years agoIssue #11268: Prevent Mac OS X Installer failure if Documentation
Ned Deily [Mon, 21 Feb 2011 20:44:27 +0000 (20:44 +0000)]
Issue #11268: Prevent Mac OS X Installer failure if Documentation
package had previously been installed.

14 years agoIssue 11263: Fix link to source code.
Raymond Hettinger [Mon, 21 Feb 2011 19:58:37 +0000 (19:58 +0000)]
Issue 11263: Fix link to source code.

14 years agoIssue #11089: Fix performance issue limiting the use of ConfigParser()
Raymond Hettinger [Mon, 21 Feb 2011 19:42:11 +0000 (19:42 +0000)]
Issue #11089: Fix performance issue limiting the use of ConfigParser()
with large config files.

14 years agoIssue #10990: Prevent tests from clobbering a set trace function.
Brett Cannon [Mon, 21 Feb 2011 19:29:56 +0000 (19:29 +0000)]
Issue #10990: Prevent tests from clobbering a set trace function.

Many tests simply didn't care if they unset a pre-existing trace function. This
made test coverage impossible. This patch fixes various tests to put back any
pre-existing trace function. It also introduces test.support.no_tracing as a
decorator which will temporarily unset the trace function for tests which
simply fail otherwise.

Thanks to Kristian Vlaardingerbroek for helping to find the cause of various
trace function unsets.

14 years agoFix compile error under MSVC introduced by r88460.
Antoine Pitrou [Mon, 21 Feb 2011 19:28:40 +0000 (19:28 +0000)]
Fix compile error under MSVC introduced by r88460.

14 years agoIgnore Vim .swp files.
Brett Cannon [Mon, 21 Feb 2011 19:24:10 +0000 (19:24 +0000)]
Ignore Vim .swp files.

14 years agoFix issues on 32-bit systems introduced by r88460
Antoine Pitrou [Mon, 21 Feb 2011 19:05:08 +0000 (19:05 +0000)]
Fix issues on 32-bit systems introduced by r88460

14 years ago3.2 is stable now.
Georg Brandl [Mon, 21 Feb 2011 18:37:01 +0000 (18:37 +0000)]
3.2 is stable now.

14 years agoIssue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
Antoine Pitrou [Mon, 21 Feb 2011 18:03:13 +0000 (18:03 +0000)]
Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
larger than 4GB.  Patch by Nadeem Vawda.

14 years agoIssue 10160: Both single-arg and multi-arg calls have been sped-up.
Raymond Hettinger [Mon, 21 Feb 2011 17:54:36 +0000 (17:54 +0000)]
Issue 10160: Both single-arg and multi-arg calls have been sped-up.

14 years ago- Check for NULL result in PyType_FromSpec.
Martin v. Löwis [Mon, 21 Feb 2011 16:24:00 +0000 (16:24 +0000)]
- Check for NULL result in PyType_FromSpec.

14 years agoRemove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite...
Georg Brandl [Sun, 20 Feb 2011 11:18:09 +0000 (11:18 +0000)]
Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again.

14 years agoMore automated version replacement.
Georg Brandl [Sun, 20 Feb 2011 10:41:31 +0000 (10:41 +0000)]
More automated version replacement.

14 years agoBump trunk to 3.3 alpha 0.
Georg Brandl [Sun, 20 Feb 2011 10:37:07 +0000 (10:37 +0000)]
Bump trunk to 3.3 alpha 0.

14 years agoBump to 3.3a0.
Georg Brandl [Sun, 20 Feb 2011 10:33:21 +0000 (10:33 +0000)]
Bump to 3.3a0.

14 years agoVersion bump to 3.2 final.
Georg Brandl [Sun, 20 Feb 2011 10:29:04 +0000 (10:29 +0000)]
Version bump to 3.2 final.

14 years agoTopic and suspicious update.
Georg Brandl [Sun, 20 Feb 2011 10:22:41 +0000 (10:22 +0000)]
Topic and suspicious update.

14 years ago#11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static...
Georg Brandl [Sat, 19 Feb 2011 21:47:02 +0000 (21:47 +0000)]
#11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static string literal which should not be deallocated together with the type.

14 years agoFix two typos in what’s new (#11234).
Éric Araujo [Sat, 19 Feb 2011 18:46:02 +0000 (18:46 +0000)]
Fix two typos in what’s new (#11234).

14 years agoSome more grammar fixes/typos for what’s new (approved by Raymond; #11071)
Éric Araujo [Sat, 19 Feb 2011 18:06:50 +0000 (18:06 +0000)]
Some more grammar fixes/typos for what’s new (approved by Raymond; #11071)

14 years ago#11184: Fix large file support on AIX.
Georg Brandl [Sat, 19 Feb 2011 08:58:23 +0000 (08:58 +0000)]
#11184: Fix large file support on AIX.

14 years ago#11222: fix non-framework shared library build on Mac, patch by Ned Deily.
Georg Brandl [Sat, 19 Feb 2011 08:47:14 +0000 (08:47 +0000)]
#11222: fix non-framework shared library build on Mac, patch by Ned Deily.

14 years ago#10709: add back an updated AIX-NOTES (as README.AIX).
Georg Brandl [Sat, 19 Feb 2011 08:44:47 +0000 (08:44 +0000)]
#10709: add back an updated AIX-NOTES (as README.AIX).

14 years agoUpdate the porting HOWTO to be a little less harsh on using 2to3.
Brett Cannon [Fri, 18 Feb 2011 01:34:28 +0000 (01:34 +0000)]
Update the porting HOWTO to be a little less harsh on using 2to3.

Patch reviewed by Raymond Hettinger, permission from Georg Brandl to commit
during an RC.

14 years agoDoc fixups.
Raymond Hettinger [Fri, 18 Feb 2011 00:53:55 +0000 (00:53 +0000)]
Doc fixups.

14 years agoFix-up logging.dictConfig() example.
Raymond Hettinger [Thu, 17 Feb 2011 19:19:44 +0000 (19:19 +0000)]
Fix-up logging.dictConfig() example.

14 years agoFix an import and add a citation.
Raymond Hettinger [Thu, 17 Feb 2011 19:05:53 +0000 (19:05 +0000)]
Fix an import and add a citation.

14 years ago#730467: Another small AIX fix.
Georg Brandl [Tue, 15 Feb 2011 19:48:59 +0000 (19:48 +0000)]
#730467: Another small AIX fix.

14 years ago#941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review...
Georg Brandl [Tue, 15 Feb 2011 15:44:51 +0000 (15:44 +0000)]
#941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou.

14 years agoRemove editing slip.
Georg Brandl [Tue, 15 Feb 2011 12:44:43 +0000 (12:44 +0000)]
Remove editing slip.

14 years agoApply logging SocketHandler doc update by Vinay.
Georg Brandl [Tue, 15 Feb 2011 12:41:17 +0000 (12:41 +0000)]
Apply logging SocketHandler doc update by Vinay.

14 years agoFix accumulate() example. (Reported by David Murray.)
Raymond Hettinger [Mon, 14 Feb 2011 18:18:49 +0000 (18:18 +0000)]
Fix accumulate() example. (Reported by David Murray.)

14 years agoPost-release updates.
Georg Brandl [Mon, 14 Feb 2011 06:35:00 +0000 (06:35 +0000)]
Post-release updates.

14 years agoTag 3.2rc3.
Georg Brandl [Sun, 13 Feb 2011 10:03:21 +0000 (10:03 +0000)]
Tag 3.2rc3.

14 years agoBump for 3.2rc3. v3.2rc3
Georg Brandl [Sun, 13 Feb 2011 10:00:57 +0000 (10:00 +0000)]
Bump for 3.2rc3.

14 years agoFix markup error and update suspicious ignores.
Georg Brandl [Sun, 13 Feb 2011 09:59:39 +0000 (09:59 +0000)]
Fix markup error and update suspicious ignores.

14 years agoUpdate pydoc topics.
Georg Brandl [Sun, 13 Feb 2011 09:54:12 +0000 (09:54 +0000)]
Update pydoc topics.

14 years agoFix #11116 fix on Windows (close file before removing in MH code)
R. David Murray [Sat, 12 Feb 2011 00:03:31 +0000 (00:03 +0000)]
Fix #11116 fix on Windows (close file before removing in MH code)

14 years ago#11116: roll back on error during add so mailbox isn't left corrupted.
R. David Murray [Fri, 11 Feb 2011 22:47:17 +0000 (22:47 +0000)]
#11116: roll back on error during add so mailbox isn't left corrupted.

14 years agoFix argument name typo in compileall docs.
R. David Murray [Fri, 11 Feb 2011 22:37:16 +0000 (22:37 +0000)]
Fix argument name typo in compileall docs.

14 years agoIssue #11134: Add missing fields to typeslots.h.
Martin v. Löwis [Fri, 11 Feb 2011 20:50:24 +0000 (20:50 +0000)]
Issue #11134: Add missing fields to typeslots.h.
Reviewed by Georg Brandl.

14 years agoIssue #11135: Remove redundant doc field from PyType_Spec.
Martin v. Löwis [Fri, 11 Feb 2011 20:47:49 +0000 (20:47 +0000)]
Issue #11135: Remove redundant doc field from PyType_Spec.
Reviewed by Georg Brandl.

14 years agoAdd uuid for 3.2rc3.
Martin v. Löwis [Fri, 11 Feb 2011 20:44:40 +0000 (20:44 +0000)]
Add uuid for 3.2rc3.

14 years agoreverting r88395 and r88387 as per http://mail.python.org/pipermail/python-dev/2011...
Giampaolo Rodolà [Fri, 11 Feb 2011 14:01:46 +0000 (14:01 +0000)]
reverting r88395 and r88387 as per http://mail.python.org/pipermail/python-dev/2011-February/108005.html

14 years agoasyncore: introduce a new 'closed' attribute to make sure that dispatcher gets closed...
Giampaolo Rodolà [Fri, 11 Feb 2011 13:04:18 +0000 (13:04 +0000)]
asyncore: introduce a new 'closed' attribute to make sure that dispatcher gets closed only once.
In different occasions close() might be called more than once, causing problems with already disconnected sockets/dispatchers.

14 years agoFixed issue11082 - Reject str for POST data with a TypeError. Document the need to...
Senthil Kumaran [Fri, 11 Feb 2011 11:25:47 +0000 (11:25 +0000)]
Fixed issue11082 - Reject str for POST data with a TypeError. Document the need to explicitly encode to bytes when using urlencode.

14 years agoMissing paren.
Raymond Hettinger [Fri, 11 Feb 2011 00:08:38 +0000 (00:08 +0000)]
Missing paren.

14 years agoInsert missing section heading (noticed by Victor Stinner).
Raymond Hettinger [Fri, 11 Feb 2011 00:03:03 +0000 (00:03 +0000)]
Insert missing section heading (noticed by Victor Stinner).

14 years agoget rid of asyncore.dispatcher's debug attribute, which is no longer used (assuming...
Giampaolo Rodolà [Thu, 10 Feb 2011 18:42:36 +0000 (18:42 +0000)]
get rid of asyncore.dispatcher's debug attribute, which is no longer used (assuming it ever was).

14 years agoFix nits.
Raymond Hettinger [Thu, 10 Feb 2011 09:43:04 +0000 (09:43 +0000)]
Fix nits.

14 years agoAdd an entry for logging.
Raymond Hettinger [Thu, 10 Feb 2011 09:20:26 +0000 (09:20 +0000)]
Add an entry for logging.

14 years agoAdd missing source links.
Raymond Hettinger [Thu, 10 Feb 2011 08:09:36 +0000 (08:09 +0000)]
Add missing source links.

14 years agoTweak wording about equality comparison.
Brett Cannon [Wed, 9 Feb 2011 22:55:13 +0000 (22:55 +0000)]
Tweak wording about equality comparison.