summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-051-0/+3
|\ | | | | | | in os.kill(). Original patch by Eli Bendersky.
| * Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-031-0/+3
| | | | | | | | in os.kill(). Original patch by Eli Bendersky.
* | merge from 3.2 - Fix closes issue12683 - urljoin to work with relative join ↵Senthil Kumaran2011-08-031-0/+3
|\ \ | |/ | | | | of svn scheme.
| * Fix closes issue12683 - urljoin to work with relative join of svn scheme.Senthil Kumaran2011-08-031-0/+3
| |
* | move news note to correct sectionBenjamin Peterson2011-08-021-2/+2
| |
* | expose sched.h functions (closes #12655)Benjamin Peterson2011-08-021-0/+5
| |
* | NEWS note for bbeda42ea6a8Benjamin Peterson2011-08-021-0/+2
| |
* | Issue #11651: Move options for running tests into a Python script.Nadeem Vawda2011-08-011-0/+7
| | | | | | | | | | | | This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.
* | Stop trying to write into the stdlib during packaging tests (#12331).Éric Araujo2011-07-311-0/+3
| | | | | | | | | | | | | | | | | | | | This prevents tests from failing when run from a Python installed in a read-only directory. The code is a bit uglier; shutil.copytree calls copystat on directories behind our back, so I had to add an os.walk with os.chmod (*and* os.path.join!) calls. shutil, I am disappoint. This changeset is dedicated to the hundreds of neurons that were lost while I was debugging this on an otherwise fine afternoon.
* | Merge fixes for #9860, #11104/#8688 and #12331 from 3.2Éric Araujo2011-07-312-0/+8
|\ \ | |/
| * Stop trying to write into the stdlib during lib2to3 tests (#12331).Éric Araujo2011-07-311-0/+3
| | | | | | | | | | This prevents tests from failing when run from a Python installed in a read-only directory.
| * Fix regression with distutils MANIFEST handing (#11104, #8688).Éric Araujo2011-07-312-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The changed behavior of sdist in 3.1 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (76643c286b9f by Tarek and d54da9248ed9 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested the 2.7 version with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me.
* | merge heads.Senthil Kumaran2011-07-301-0/+3
|\ \
| * | also make NotImplementedType callableBenjamin Peterson2011-07-291-2/+2
| | |
| * | merge headsBenjamin Peterson2011-07-291-0/+5
| |\ \
| * | | make the types of None and Ellipsis callableBenjamin Peterson2011-07-291-0/+3
| | | |
* | | | Fix closes Issue11281 - smtplib.STMP gets source_address parameter, which ↵Senthil Kumaran2011-07-301-0/+4
| |/ / |/| | | | | | | | adds the ability to bind to specific source address on a machine with multiple interfaces. Patch by Paulo Scardine.
* | | Issue #12626: In regrtest, allow to filter tests using a glob filterAntoine Pitrou2011-07-291-0/+5
|\ \ \ | |/ / |/| / | |/ | | | | with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
| * Issue #12626: In regrtest, allow to filter tests using a glob filterAntoine Pitrou2011-07-291-0/+5
| | | | | | | | | | | | with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
* | bytes should be verboten in sum() (fixes #12654)Benjamin Peterson2011-07-291-0/+2
| |
* | Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks:Charles-François Natali2011-07-291-0/+3
|\ \ | |/ | | | | fix it. Patch by Petri Lehtinen.
| * Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks:Charles-François Natali2011-07-292-0/+4
| | | | | | | | fix it. Patch by Petri Lehtinen.
* | Merge fix for #8887 from 3.2Éric Araujo2011-07-291-0/+3
|\ \ | |/
| * Make “pydoc somebuiltin.somemethod” work (#8887)Éric Araujo2011-07-291-0/+3
| |
| * Branch mergeÉric Araujo2011-07-291-33/+34
| |\
| | * Change one line I missed in 7527f3f9829Éric Araujo2011-07-291-1/+1
| | |
| | * Branch mergeÉric Araujo2011-07-281-0/+9
| | |\
| | * \ Branch merge.Éric Araujo2011-07-261-32/+33
| | |\ \ | | | | | | | | | | | | | | | I moved the NEWS entry for the reindent fix to the right release section.
| | | * | Fix sorting or wording of some NEWS entries.Éric Araujo2011-07-261-27/+28
| | | | | | | | | | | | | | | | | | | | | | | | | I would have put io and ctypes fixes into Extension Modules, but I respected the choice of Antoine or Victor and left them in Library.
* | | | | Branch mergeÉric Araujo2011-07-291-0/+10
|\ \ \ \ \
| * | | | | Remove indirection in threading (issue #10968).Éric Araujo2011-07-271-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The public names (Thread, Condition, etc.) used to be factory functions returning instances of hidden classes (_Thread, _Condition, etc.), because (if Guido recalls correctly) this code pre-dates the ability to subclass extension types. It is now possible to inherit from Thread and other classes, without having to import the private underscored names like multiprocessing did. A doc update will follow: a patch is under discussion on the issue.
| * | | | | Add shlex.quote function, to escape filenames and command lines (#9723).Éric Araujo2011-07-271-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function used to live as pipes.quote, where it was undocumented but used anyway. (An alias still exists for backward compatibility.) The tests have been moved as is, but the code of the function was changed to use a regex instead of a loop with string comparisons (at Ian Bicking’s suggestion). I’m terrible at regexes, so any feedback is welcome.
* | | | | | Issue 12514: Use try/finally to assure that timeit restores GC when done.Raymond Hettinger2011-07-292-0/+4
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Issue 12514: Use try/finally to assure that timeit restores GC when done.Raymond Hettinger2011-07-292-0/+4
| | | | | |
* | | | | | Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.Eli Bendersky2011-07-291-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen
* | | | | | Issue 12647: Add __bool__() method to the None object.Raymond Hettinger2011-07-281-0/+4
| | | | | |
* | | | | | Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.Charles-François Natali2011-07-271-0/+2
|\ \ \ \ \ \ | |/ / / / / | | / / / / | |/ / / / |/| | | |
| * | | | Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.Charles-François Natali2011-07-271-0/+2
| | |_|/ | |/| |
* | | | Issue #12607: Merge with 3.2.Ross Lagerwall2011-07-271-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-271-0/+3
| | | | | | | | | | | | | | | | given as a low fd, it gets overwritten.
* | | | Issue #12590: IDLE editor window now always displays the first lineNed Deily2011-07-271-0/+3
|\ \ \ \ | |/ / / | | | | | | | | when opening a long file. With Tk 8.5, the first line was hidden.
| * | | Issue #12590: IDLE editor window now always displays the first lineNed Deily2011-07-271-0/+3
| | | | | | | | | | | | | | | | when opening a long file. With Tk 8.5, the first line was hidden.
* | | | merge from 3.2 - Fix closes Issue12576 - fix urlopen behavior on sites which ↵Senthil Kumaran2011-07-271-0/+3
|\ \ \ \ | |/ / / | | | | | | | | do not send (or obsfuscates) Connection: Close header.
| * | | Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or ↵Senthil Kumaran2011-07-271-0/+3
| |/ / | | | | | | | | | obsfuscates) Connection: Close header.
* | | Issue #10639: reindent.py tool now accepts a --newline option to specify the ↵Jason R. Coombs2011-07-261-0/+1
| | | | | | | | | | | | newline to be used in the output of converted files.
* | | Merge with 3.2 Issue #10639: reindent.py should not convert newlines.Jason R. Coombs2011-07-261-1/+4
|\ \ \ | |/ / | | | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
| * | Fixes #10639: reindent.py should not convert newlinesJason R. Coombs2011-07-261-0/+6
| |/ | | | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
* | Issue #11784: Improve multiprocessing.Process.join() documentation. Patch byCharles-François Natali2011-07-251-0/+1
| | | | | | | | Patrick Sabin.
* | Issue #12102: Merge with 3.2.Ross Lagerwall2011-07-251-0/+3
|\ \ | |/
| * Issue #12102: Document that buffered files must be flushed before being usedRoss Lagerwall2011-07-251-0/+3
| | | | | | | | with mmap. Patch by Steffen Daode Nurpmeso.