summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add cheot-ga-keut composed make-up sequence support in EUC-KR codec.Hye-Shik Chang2007-08-205-11/+146
|
* Fix stray backticks.Georg Brandl2007-08-192-4/+3
|
* Remove Mikael as the maintainer of BeOS at his request. With no maintainerBrett Cannon2007-08-181-1/+2
| | | | should the port be deprecated in 2.6?
* Fix PDB command descriptions.Georg Brandl2007-08-181-4/+4
|
* Make test_warnings re-entrant.Brett Cannon2007-08-171-0/+5
|
* Added a flag (_send_traceback_header) to the SimpleXMLRPCServer classFacundo Batista2007-08-172-9/+106
| | | | | | | | | that allows sending back exception/stack trace information about internal server errors (this flag defaults to False to avoid sending such information unless explicitly enabled). Added tests to verify behavior of this new feature (these tests are skipped on win32 because of problems with WSAEWOULDBLOCK). Renamed HTTPTestCase to SimpleServerTestCase. [GSoC - Alan McIntyre]
* Remove news entry for test.test_support.guard_warnings_filter as it has beenBrett Cannon2007-08-171-4/+0
| | | | removed.
* Clarify the comment about setting the PYTHON variable for the Doc Makefile.Brett Cannon2007-08-171-2/+3
|
* Move another variable declaration up.Walter Dörwald2007-08-171-2/+2
|
* Use glossary x-refs, document new ``!`` feature.Georg Brandl2007-08-172-13/+18
|
* Move variable declaration up.Walter Dörwald2007-08-171-6/+6
|
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-1712-2/+999
|
* Move the glossary from the tutorial to toplevel.Georg Brandl2007-08-175-352/+337
| | | | Prepare for cross-linking with the new .. glossary:: directive.
* Note that smtplib example needs a mailserver.Georg Brandl2007-08-171-0/+2
|
* Fix problem reported by Andre Roberge.Georg Brandl2007-08-171-5/+5
|
* Update the tools before building the docsNeal Norwitz2007-08-171-1/+1
|
* Ignore a few more files.Guido van Rossum2007-08-170-0/+0
|
* Ignore *.py[co] files.Guido van Rossum2007-08-170-0/+0
|
* - mark the findCaller 2-element tuple/3-element tuple change as new in 2.4Matthias Klose2007-08-161-1/+1
|
* Added a note in each regarding the fact that unicode strings that look the sameMark Summerfield2007-08-162-2/+12
| | | | may not compare equal (due to the possibility of multiple representations).
* Try to make the comment a little clearer.Neal Norwitz2007-08-161-3/+4
|
* Support the new doc system.Neal Norwitz2007-08-161-4/+8
|
* Replace "Caveat" paragraphs by .. warning::s.Georg Brandl2007-08-155-21/+30
|
* Mark deprecated modules as such.Georg Brandl2007-08-1514-3/+25
|
* Fix a wrong path in the Makefile.Georg Brandl2007-08-151-1/+1
|
* Don't use "?=" which seems to be a GNUism.Georg Brandl2007-08-151-3/+3
|
* Add the roman.py module which docutils require.Georg Brandl2007-08-151-0/+80
|
* Fail somewhat more gracefully when using Python < 2.5.Georg Brandl2007-08-151-0/+9
|
* When passed a bad formed literal to Decimal, now we have aFacundo Batista2007-08-151-1/+2
| | | | better error message, more descriptive. (bug #1770009)
* Move the 2.6 reST doc tree in place.Georg Brandl2007-08-15445-0/+136056
|
* Delete the LaTeX doc tree.Georg Brandl2007-08-15513-154687/+0
|
* Tag last revision with LaTeX docs.Georg Brandl2007-08-150-0/+0
|
* Fix a missed instance of test.test_support.guard_warnings_filter (which wasBrett Cannon2007-08-141-1/+1
| | | | recently removed).
* Added tests for simple function calls and introspection that are runFacundo Batista2007-08-141-2/+102
| | | | | | against a SimpleXMLRPCServer in a separate thread. Because of problems with WSAEWOULDBLOCK (error 10035) being raised by the server on Windows, these new tests are skipped on win32. [GSoC - Alan McIntyre]
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-1410-32/+18
| | | | | | | | test.test_support.catch_warning is more full-featured and provides the same functionality. Since guard_warnings_filter was added in 2.6 there is no backwards-compatibility issues.
* Add a UUID for python26.dll.Martin v. Löwis2007-08-141-0/+1
|
* Clarify the docs for TransientResource.Brett Cannon2007-08-141-4/+5
|
* Fix a minor typo in a docstring.Brett Cannon2007-08-141-1/+1
|
* Fix memory leak in os.readlinkNeal Norwitz2007-08-121-2/+6
|
* Added Jeffrey Yasskin, reformat some lines to be consistent (and shorter).Neal Norwitz2007-08-101-6/+7
|
* Backport r56875 from py3k; double LEAVE_PYTHON when AsString() failsGuido van Rossum2007-08-091-1/+3
| | | | in PythonCmd().
* Fix compilation warning.Georg Brandl2007-08-081-1/+1
|
* Revert the fix for #1548891, it broke backwards compatibility with arbitrary ↵Georg Brandl2007-08-084-28/+9
| | | | | | read buffers. Fixes #1730114.
* Bug #1769002: fix a now-wrong sentence in the tutorial.Georg Brandl2007-08-071-7/+6
|
* Patch #1765839: add link to https+proxy urllib2 opener.Georg Brandl2007-08-061-1/+6
|
* Replace unnecessary function call.Georg Brandl2007-08-061-1/+1
|
* Place #ifdef Py_USING_UNICODE around decode_unicode().Georg Brandl2007-08-061-0/+2
|
* Handle errors when generating a warning.Neal Norwitz2007-08-051-30/+31
| | | | | | | | The value is always written to the returned pointer if getting it was successful, even if a warning causes an error. (This probably doesn't matter as the caller will probably discard the value.) Will backport.
* Fix gb18030 codec's bug that doesn't map two-byte characters onHye-Shik Chang2007-08-044-1/+26
| | | | GB18030 extension in encoding. (bug reported by Bjorn Stabell)
* Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backportNeal Norwitz2007-08-032-1/+5
|