summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* issue 10683Kristján Valur Jónsson2010-12-131-0/+11
| | | | | | | | | | When the solution is converted to Visual Studio 2010, the command line to invoke make_buildinfo changes from: $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)\" to $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)" If the final backslash is omitted, the backslash in IntDir will escape the quote, thus passing the quote in as part of the path name. This solution is a hack-fix to that problem by skipping any trailing quote from the path name. It works as long as we don't need any additional arguments to make_buildinfo.exe. This will help all those sould that are going to run this project through the visual studio autoconverter and get the same error.
* Actually finish the tests for r87182Nick Coghlan2010-12-131-3/+5
|
* Logging documentation - further update.Vinay Sajip2010-12-121-2/+2
|
* Logging documentation - further update.Vinay Sajip2010-12-121-4/+24
|
* Logging documentation - further update.Vinay Sajip2010-12-121-3/+4
|
* Improve readability of the socket docsAntoine Pitrou2010-12-121-57/+82
|
* Homogenize the "optional OS services" menuAntoine Pitrou2010-12-124-12/+12
|
* Consistent ordering of availability statementsAntoine Pitrou2010-12-121-2/+2
|
* Fix heading levelAntoine Pitrou2010-12-121-2/+2
|
* Remove redundant sentence, and fix markupAntoine Pitrou2010-12-121-7/+4
|
* #243654: only create a new MIME boundary if we don't already have one.R. David Murray2010-12-121-12/+6
| | | | | | The rearranged code should do exactly what the old code did, but the new code avoids a potentially costly re computation in the case where a boundary already exists.
* Add link to the buffer protocol description from the memory description.Antoine Pitrou2010-12-121-2/+2
|
* Better explain the buffer interface (hopefully)Antoine Pitrou2010-12-122-16/+26
|
* Make this a warning and fix indentationAntoine Pitrou2010-12-121-6/+6
|
* Obsolete aliases needn't be documentedAntoine Pitrou2010-12-121-4/+0
|
* Remove reference to stuff which is already obsolete in 2.x.Antoine Pitrou2010-12-121-82/+0
|
* SET_LINENO was removed in 2.3Antoine Pitrou2010-12-121-5/+0
|
* Logging documentation - further update.Vinay Sajip2010-12-121-51/+101
|
* Issue #10188 (partial resolution): tidy up some behaviour in the new ↵Nick Coghlan2010-12-124-14/+79
| | | | tempfile.TemporaryDirectory context manager
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+5
|
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+8
|
* Logging documentation update.Vinay Sajip2010-12-121-144/+420
|
* having three copies of the same test is surely a bit excessiveBenjamin Peterson2010-12-121-296/+0
|
* remove (un)transform methodsBenjamin Peterson2010-12-129-274/+6
|
* Fix markup.Georg Brandl2010-12-111-2/+4
|
* Create the hardlink between python-3.2m and python-3.2 in altbininstall targetBarry Warsaw2010-12-111-5/+5
| | | | | instead of bininstall target so it shows up when you do 'make altinstall'. Closes issue 10677.
* Add versionchanged for parameter type changes.Martin v. Löwis2010-12-111-0/+5
|
* Avoid AttributeError(_closed) when a TemporaryDirectory is deallocated whose ↵Georg Brandl2010-12-111-0/+2
| | | | mkdtemp call failed.
* Adjust PySlice_GetIndices documentation to signature change.Martin v. Löwis2010-12-111-2/+2
|
* Fix typo.Georg Brandl2010-12-101-2/+2
|
* Reverted accidental commit (from r87159)Alexander Belopolsky2010-12-102-29/+25
|
* Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-103-33/+38
|
* Move nntp entry back to changed modules section and add entry for non-ascii ↵Raymond Hettinger2010-12-101-7/+13
| | | | import directories.
* logging: added handler of last resort.Vinay Sajip2010-12-103-14/+87
|
* #10668: fix wrong call of __init__.Georg Brandl2010-12-101-1/+1
|
* Fied typoVinay Sajip2010-12-101-1/+1
|
* test.support: Added TestHandler and Matcher classes for better support of ↵Vinay Sajip2010-12-102-2/+71
| | | | assertions about logging.
* Minor documentation tweak.Vinay Sajip2010-12-101-2/+2
|
* #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for ↵Ezio Melotti2010-12-102-5/+5
| | | | noticing it.
* Reclassify some entries and remove a couple of minor ones.Raymond Hettinger2010-12-101-43/+30
|
* Overview of email module and recategorize various entries.Raymond Hettinger2010-12-101-32/+45
|
* Doh! Example pasted twice, but only once in the right place.Raymond Hettinger2010-12-091-6/+1
|
* Guard against rogue tuples.Georg Brandl2010-12-091-1/+1
|
* #10661: give QName a nicer repr.Georg Brandl2010-12-091-0/+2
|
* Fix "seperate".Georg Brandl2010-12-092-2/+2
|
* Entries for datetime, callable, and collections.Counter.Raymond Hettinger2010-12-091-15/+41
|
* Fixed typo in comment.Hirokazu Yamamoto2010-12-091-1/+1
|
* Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher)Hirokazu Yamamoto2010-12-091-2/+4
|
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ↵Alexander Belopolsky2010-12-0813-79/+145
| | | | NULL
* Have script_helper._assert_python strip refcount strings from stderr.R. David Murray2010-12-081-1/+3
| | | | | | This makes the output of the function and those that depend on it independent of whether or not they are being run under a debug build.