summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix stupid typoFred Drake2005-10-111-1/+1
|
* Added Host and Content-type headers to requests sent by HTTPHandler ↵Vinay Sajip2005-10-111-1/+10
| | | | (suggested by Steven Vereecken)
* SF bug #1323294, Minor error in the Library Reference doc. Will backportNeal Norwitz2005-10-111-1/+2
|
* Clarify the docs for Py_UNICODE.Marc-André Lemburg2005-10-101-6/+16
|
* Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specifiedWalter Dörwald2005-10-093-1/+4
| | | | by RFC 1642.
* Remove trailing spaces.Walter Dörwald2005-10-091-3/+3
|
* Fix indentation.Walter Dörwald2005-10-091-1/+1
|
* Fix errors in _synthesize because of missing basename attribute ofGeorg Brandl2005-10-081-2/+6
| | | | browser controller classes.
* Fix unit test failure -- the output received from Python can be empty,Guido van Rossum2005-10-081-1/+1
| | | | but verify_valid_flag() wasn't expecting that. Will backport.
* Fixed bug where the logging message was wrongly being demoted from Unicode ↵Vinay Sajip2005-10-071-6/+8
| | | | to string (SF #1314107)
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-064-77/+154
| | | | | | | PyUnicode_DecodeCharmap() the accept a unicode string as the mapping argument which is used as a mapping table. This code isn't used by any of the codecs yet.
* Change the internal "undefined codepoint" mark for CJKCodecs decodersHye-Shik Chang2005-10-061-1/+4
| | | | | from U+FFFD to U+FFFE which is considered more appropriate. (from MAL's comment)
* SF #1313496: bisect C replacement doesn't accept named argsRaymond Hettinger2005-10-052-22/+36
|
* Get "make install" working again after adding Lib/test/bad_coding.pyNeal Norwitz2005-10-041-2/+2
| | | | which can't be compiled. Thanks to Mat Martineau for spotting the problem.
* Make close brace a paren to match open.Neal Norwitz2005-10-041-1/+1
|
* Armin caught this mistake in bug #973103.Neal Norwitz2005-10-041-1/+1
|
* open_new_win does not exist. use UNIX consistently, add autoraise parameter ↵Neal Norwitz2005-10-041-12/+13
| | | | to open(). add versionadded tags to open_new_tab
* Fix pychecker warningsNeal Norwitz2005-10-041-4/+9
|
* Incorporate Tal Einat's comment on Patch 936169: Fixes alignment problem.Kurt B. Kaiser2005-10-032-4/+13
|
* Tweak CodeContext.py docstrings, comments, and names.Kurt B. Kaiser2005-10-031-51/+57
|
* Correct docs for empty raise when no exception is active.Raymond Hettinger2005-10-031-2/+3
|
* fix link to subsection (SF bug #1311674)Fred Drake2005-10-031-2/+4
|
* Patch #754022: Greatly enhanced webbrowser.py.Georg Brandl2005-10-033-197/+393
|
* suppress more errors on my box, most are gentoo specific. ↵Neal Norwitz2005-10-031-0/+118
| | | | Py_ADDRESS_IN_RANGE is x86_64 specific and the readline memory leaks should be generally applicable
* SF Bug #1008310, os.major() os.minor() example and description change. Will ↵Neal Norwitz2005-10-031-2/+4
| | | | backport.
* Fix SF bug #991735, os.access reports true for read-only directories. Will ↵Neal Norwitz2005-10-031-0/+5
| | | | backport
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-032-1/+7
| | | | Will backport.
* SF Bug # 941346, AIX shared library fixNeal Norwitz2005-10-031-0/+4
| | | | | | | | Since I can't test this, I'm just adding a comment. If we get access to AIX boxes, we can test this and really resolve. Anyone from IBM want to offer help? Backport candidate I suppose.
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-034-0/+70
| | | | | | | Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport.
* SF Bug #1308042, platform dependent behaviour (Windoze of course) in UDP ↵Neal Norwitz2005-10-031-1/+2
| | | | sockets. Will backport
* SF patch #1227568, Expression AST node not documented.Neal Norwitz2005-10-031-0/+1
|
* SF patch #1227568, bug #1219273, Expression AST node not documented. ↵Neal Norwitz2005-10-031-0/+2
| | | | Backport candidate if anyone cares.
* Increased performance in CodeContext extension Patch 936169 Noam RaphaelKurt B. Kaiser2005-10-022-31/+49
|
* - Fix segfault with invalid coding.Neal Norwitz2005-10-027-3/+39
| | | | | | | - SF Bug #772896, unknown encoding results in MemoryError, which is not helpful I will only backport the segfault fix. I'll let Anthony decide if he wants the other changes backported. I will do the backport if asked.
* Fix PyString_Format so that the "%s" format works again when Unicode is notGeorg Brandl2005-10-011-0/+2
| | | | enabled.
* bug [ 729103 ] Cannot retrieve name of super objectGeorg Brandl2005-10-012-3/+6
|
* Forward port bugfix:Michael W. Hudson2005-09-301-0/+4
| | | | | | [ 1307978 ] Unsatisfied symbols: _PyGILState_NoteThreadState (code) (note that this only happens in a threads-disabled build).
* Patch #1309009, Fix segfault in pyexpat when the XML document isNeal Norwitz2005-09-304-1/+19
| | | | | | in latin_1, but Python incorrectly assumes it is in UTF-8 format Will backport.
* patch [ 1300515 ] xdrlib.py: pack_fstring() did not use null bytes for paddingGeorg Brandl2005-09-292-1/+4
|
* bug [ 1298120 ] shlex does not support unicodeGeorg Brandl2005-09-291-0/+2
|
* bug [ 1296004 ] MemoryError in httplibGeorg Brandl2005-09-292-4/+10
|
* Fix parse errors in readline module when compiling without threads.Georg Brandl2005-09-292-0/+4
|
* bug [ 1306449 ] PyString_AsStringAndSize() return value documented wrongGeorg Brandl2005-09-281-2/+2
|
* Use lzx:21 for compression. Backported to 2.4Martin v. Löwis2005-09-271-1/+1
|
* Minor clarification of effective level calculationVinay Sajip2005-09-261-0/+14
|
* some more fixes and tests for inspect.getsource(), triggered by crashesArmin Rigo2005-09-253-27/+56
| | | | from the PyPy project as well as the SF bug #1295909.
* Commit memory leaking fix.Georg Brandl2005-09-251-2/+6
|
* (pedronis, arigo)Armin Rigo2005-09-241-1/+1
| | | | | segfault when a class contain a non-list value in the (undocumented) special attribute __slotnames__.
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-2416-94/+169
|
* Patch #1288833: Removed thread lock from socket.getaddrinfo onHye-Shik Chang2005-09-242-1/+9
| | | | | FreeBSD 5.3 and later versions which got thread-safe getaddrinfo(3). (Reported by Maxim Sobolev)