summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rephrase PyUnicode_CompareWithASCIIString() documentationVictor Stinner2010-12-281-2/+3
|
* Issue #10783: rephrase the changelog (NEWS, What's new)Victor Stinner2010-12-282-3/+2
|
* Don't ignore pgen error (on "make Parser/pgen.stamp")Victor Stinner2010-12-281-1/+1
|
* Compile pgenmain.c and printgrammar.c with PGEN definedVictor Stinner2010-12-282-0/+4
|
* Does not install a logging handler. Fixes issue 10626.Brian Quinlan2010-12-282-12/+3
|
* Issue 10738: Fix webbrowser.Opera.raise_opts value.Terry Reedy2010-12-282-5/+3
|
* #9824: encode , and ; in cookie values so that browsers don't split on themR. David Murray2010-12-283-0/+16
| | | | | | | | There is a small chance of backward incompatibility here, but only for non-SimpleCookie applications reading SimpleCookie generated cookies. Even then, any such ap is likely to be handling escaped values already, and it would take a fairly perverse implementation of unescaping to fail to unescape these newly escaped chars, so the risk seems minimal.
* Add sys.flags.quiet attribute for the new -q option, as noted missing by ↵Georg Brandl2010-12-286-4/+14
| | | | Eric in #1772833.
* This file was obsolted by a number of adjustments to the os.symlink testsBrian Curtin2010-12-281-206/+0
| | | | on Windows, and is no longer needed by any tests or Lib/test/support.py
* Minor doc update for #9333. Took out the phrasing about os.symlink notBrian Curtin2010-12-281-6/+9
| | | | existing and mentioned the OSError possibility.
* Fix Issue10759 - html.parser.unescape() fails on HTML entities with ↵Senthil Kumaran2010-12-282-7/+15
| | | | incorrect syntax
* Fix #9333. The symlink function is always available now, raising OSErrorBrian Curtin2010-12-2811-46/+55
| | | | when the user doesn't hold the symbolic link privilege rather than hiding it.
* Issue #10783: Fix test_sys, pack('c', ' ') => pack('c', b' ')Victor Stinner2010-12-281-1/+1
|
* Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8Victor Stinner2010-12-286-107/+83
| | | | | | | * Replace "bytes" by "bytes object" in struct error messages * Document the API change in What's new in Python 3.2 * Fix test_wave * Remove also ugly implicit conversions in test_struct
* #10609: fix non-working dbm example.Georg Brandl2010-12-281-4/+2
|
* #10739: document that on Windows, socket.makefile() does not make a file ↵Georg Brandl2010-12-282-8/+15
| | | | that has a true file descriptor usable where such a thing is expected.
* Rewrap.Georg Brandl2010-12-281-13/+13
|
* Remove history; adapt a bit more to reST, since this will once be part of ↵Georg Brandl2010-12-281-160/+153
| | | | the dev guide.
* #10781: clarify that *encoding* is not a parameter for Node objects in general.Georg Brandl2010-12-281-3/+3
|
* #10742: document readonly attribute of memoryviews.Georg Brandl2010-12-281-0/+4
|
* #10767: update README in crashers; not all may have a bug entry and/or be fixed.Georg Brandl2010-12-281-14/+10
|
* Issue #9738: Fix typo, ASCII-encoding string => ASCII-encoded stringVictor Stinner2010-12-281-1/+1
|
* Add news entry and clarify another.Georg Brandl2010-12-281-2/+4
|
* #10768: fix ScrolledText widget construction, and make the example work from ↵Georg Brandl2010-12-282-4/+5
| | | | the interactive shell.
* #10777: fix iteration over dict keys while mutating the dict.Georg Brandl2010-12-283-1/+13
|
* #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make ↵Georg Brandl2010-12-283-2/+39
| | | | altinstall; create symlinks for make install.
* Fix advice: call PyType_Ready to fill in ob_type of custom types.Georg Brandl2010-12-281-3/+3
|
* Remove confusing paragraph -- this is relevant only to advanced users anyway ↵Georg Brandl2010-12-281-8/+0
| | | | and does not belong into the tutorial.
* Replace sys.maxint mention by sys.maxsize.Georg Brandl2010-12-281-1/+1
|
* Issue #10780: Remove commas at the end of the argument listVictor Stinner2010-12-281-2/+2
| | | | Forbidden in C, stupid language!
* Issue #8966: Remove the documentation of ctypes.set_conversion_mode()Victor Stinner2010-12-281-16/+0
| | | | Function removed by r83195.
* Issue #10780: PyErr_SetFromWindowsErrWithFilename() andVictor Stinner2010-12-284-6/+11
| | | | | PyErr_SetExcFromWindowsErrWithFilename() decode the filename from the filesystem encoding instead of UTF-8.
* Issue #10778: decoding_fgets() decodes the filename from the filesystemVictor Stinner2010-12-271-6/+11
| | | | encoding instead of UTF-8.
* Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystemVictor Stinner2010-12-274-4/+8
| | | | encoding instead of UTF-8.
* #7056: runtest and runtest_inner don't use testdir, so drop it from their sigsR. David Murray2010-12-271-14/+8
| | | | | I've only tested regular runs and -j runs. If I've broken anything else I'm sure I'll hear about it sooner or later.
* Issue #10626: test_logging now preserves logger disabled states.Vinay Sajip2010-12-271-2/+4
|
* Issue #10626: test_logging now preserves logger disabled states.Vinay Sajip2010-12-271-1/+9
|
* Issue #10774: test_logging now removes temp files created during tests.Vinay Sajip2010-12-272-7/+12
|
* Skip test that does not raise an error on Windows.R. David Murray2010-12-271-0/+2
| | | | | I'm assuming that the putative path from the malformed pth file is simply not found and therefore ignored.
* Issue #9738: Ooops, fix typos in my previous commit (r87506)Victor Stinner2010-12-272-2/+2
|
* Issue #9738: Document encodings of AST, compiler, parser and PyRun functionsVictor Stinner2010-12-276-49/+111
|
* Issue #9738: document encodings of unicode functionsVictor Stinner2010-12-272-6/+9
|
* Issue #9738: Document encodings of error and warning functionsVictor Stinner2010-12-273-24/+78
|
* Escape file path before searching for it in output via regexR. David Murray2010-12-271-3/+7
|
* Added logging documentation cross-references.Vinay Sajip2010-12-262-4/+30
|
* #5258/#10642: print fn, line, traceback and continue when .pth file is brokenR. David Murray2010-12-263-9/+71
| | | | | | | | | | If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file.
* Improved logging cookbook for logging with multiprocessing.Vinay Sajip2010-12-261-0/+100
|
* Fix typo (#10770)Éric Araujo2010-12-261-1/+1
|
* revert 87478Terry Reedy2010-12-261-1/+1
|
* Remove unexistent parameter (#3216)Éric Araujo2010-12-261-1/+1
|