Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add info from the docstring for random.gammavariate() to the docs. | Georg Brandl | 2011-09-17 | 1 | -0/+7 |
| | |||||
* | Issue #12935: Correct typo in findertools. | Ned Deily | 2011-09-15 | 1 | -1/+1 |
| | |||||
* | Use bitwise instead of logical or for flags. | Stefan Krah | 2011-09-15 | 1 | -1/+1 |
| | |||||
* | Fix the import machinery if there is an error on sys.path or sys.meta_path | Victor Stinner | 2011-09-15 | 1 | -4/+4 |
| | | | | | | find_module() now raises a RuntimeError, instead of ImportError, on an error on sys.path or sys.meta_path because load_package() and import_submodule() returns None and clear the exception if a ImportError occurred. | ||||
* | Backport fix for issue #11149. | Stefan Krah | 2011-09-14 | 2 | -0/+12 |
| | |||||
* | Port the fix for Issue12924 (missing quote_plus) to 2.7 branch. | Senthil Kumaran | 2011-09-13 | 1 | -0/+1 |
| | |||||
* | Remove trailing spaces | Amaury Forgeot d'Arc | 2011-09-12 | 1 | -1/+1 |
| | |||||
* | Issue #12483: ctypes: Fix a crash when the destruction of a callback | Amaury Forgeot d'Arc | 2011-09-12 | 3 | -0/+12 |
| | | | | object triggers the garbage collector. | ||||
* | Branch merge | Éric Araujo | 2011-09-12 | 3 | -56/+70 |
|\ | |||||
| * | Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. | Éric Araujo | 2011-09-10 | 3 | -2/+21 |
| | | |||||
| * | Slight cleanup in distutils test_dist. | Éric Araujo | 2011-09-10 | 1 | -54/+49 |
| | | | | | | | | | | | | | | | | I have tests to add in this file and it’s always nice to start from a clean base. I’ve also changed a test that used to write an invalid config file ('[global]command_packages = etc.' on one line), but the test passes before and after this change, so either it magically works or the test is poorly written. Sigh. | ||||
* | | NEWS | Jesus Cea | 2011-09-10 | 1 | -0/+3 |
| | | |||||
* | | Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana | Jesus Cea | 2011-09-10 | 1 | -11/+23 |
| | | |||||
* | | Fix issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -2/+0 |
| | | |||||
* | | Close issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -3/+27 |
|/ | |||||
* | Port a few markup edits from 3.x | Éric Araujo | 2011-09-09 | 1 | -7/+8 |
| | |||||
* | Issue #12333: fix test_distutils failures under Solaris and derivatives. ↵ | Jesus Cea | 2011-09-09 | 1 | -0/+4 |
| | | | | Patch by Antoine Pitrou | ||||
* | Closes #12906: Fixed bug in YAML configuration. | Vinay Sajip | 2011-09-06 | 1 | -1/+1 |
| | |||||
* | Update sys.platform doc for #12326. | Victor Stinner | 2011-09-05 | 1 | -18/+28 |
| | | | | Backport from Python 3.2 (e11b4c945f7e). | ||||
* | Issue #12326: Remove plat-linux3 directory | Victor Stinner | 2011-09-05 | 5 | -1083/+0 |
| | | | | sys.platform is now always 'linux2' on Linux (even on Linux 3) | ||||
* | merge from 3.2. Fix closes Issue11155 - Correct the ↵ | Senthil Kumaran | 2011-09-06 | 1 | -4/+4 |
| | | | | multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez. | ||||
* | Branch merge | Éric Araujo | 2011-09-05 | 3 | -7/+38 |
|\ | |||||
| * | Warn instead of crashing because of invalid path in MANIFEST.in (#8286). | Éric Araujo | 2011-09-03 | 3 | -2/+34 |
| | | | | | | | | | | sdist used to crash with a full traceback dump instead of printing a nice warning with the faulty line number. | ||||
| * | Enable catching WARN-level logging messages in distutils' test_sdist | Éric Araujo | 2011-09-03 | 1 | -5/+4 |
| | | |||||
* | | Issue #12841: Fix tarfile extraction of non-existent uids/gids. | Lars Gustäbel | 2011-09-05 | 2 | -8/+7 |
| | | | | | | | | | | | | | | tarfile unnecessarily checked the existence of numerical user and group ids on extraction. If one of them did not exist the respective id of the current user (i.e. root) was used for the file and ownership information was lost. (Patch by Sebastien Luttringer) | ||||
* | | Give credit to Adam | Sandro Tosi | 2011-09-02 | 1 | -0/+1 |
| | | |||||
* | | Issue #12764: Fix a crash in ctypes when the name of a Structure field is not | Amaury Forgeot d'Arc | 2011-09-02 | 3 | -2/+26 |
| | | | | | | | | a string. | ||||
* | | #12781: Mention SO_REUSEADDR flag near socket examples | Sandro Tosi | 2011-09-02 | 1 | -0/+19 |
|/ | |||||
* | Branch merge | Éric Araujo | 2011-09-02 | 12 | -34/+50 |
|\ | |||||
| * | Remove obsolete comment | Éric Araujo | 2011-09-01 | 1 | -2/+0 |
| | | |||||
| * | Clarify compileall command-line options (#10454). | Éric Araujo | 2011-09-01 | 1 | -13/+26 |
| | | | | | | | | | | Backport of R. David Murray’s 3.2 patch. The code is ugly, with print statements split across lines, but the output is readable. | ||||
| * | Document that format string don’t support arbitrary dictonary keys. | Éric Araujo | 2011-09-01 | 1 | -0/+2 |
| | | | | | | | | | | Text adapted from the PEP. Addition requested by Terry J. Reedy on 2011-02-23 on python-dev. | ||||
| * | Document that True/False/None don’t use :keyword: in doc | Éric Araujo | 2011-09-01 | 1 | -1/+4 |
| | | |||||
| * | Fix some markup and one typo | Éric Araujo | 2011-09-01 | 4 | -5/+5 |
| | | |||||
| * | Avoid using the default reST role. Makes Doc/tools/rstlint.py happy. | Éric Araujo | 2011-09-01 | 4 | -13/+13 |
| | | |||||
* | | Remove unused variable if Python is build without threads | Victor Stinner | 2011-09-02 | 1 | -0/+2 |
| | | |||||
* | | From RFC 3629 5- and 6-bytes UTF-8 sequences are invalid, so remove them ↵ | Ezio Melotti | 2011-09-01 | 1 | -7/+2 |
|/ | | | | from the doc. | ||||
* | Fix test_sysconfig when run from a Python installed under /site (#10086). | Éric Araujo | 2011-08-31 | 1 | -2/+2 |
| | | | | Patch by Hallvard B Furuseth. | ||||
* | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to | Amaury Forgeot d'Arc | 2011-08-30 | 3 | -2/+11 |
| | | | | some functions like file.write(). | ||||
* | added versionadd information for pkgutil.get_data(); thanks to Kyle Monson ↵ | Sandro Tosi | 2011-08-30 | 1 | -0/+2 |
| | | | | from docs@ | ||||
* | Make bdist_* commands respect --skip-build passed to bdist (#10946) | Éric Araujo | 2011-08-30 | 5 | -25/+44 |
| | |||||
* | Add suspicious entries for the Python Porting HOWTO recently added | Éric Araujo | 2011-08-30 | 1 | -0/+3 |
| | |||||
* | Fix test failures when Python is compiled without thread support. | Nadeem Vawda | 2011-08-29 | 1 | -9/+1 |
| | |||||
* | Always define _PyIsSelectable_fd(). | Charles-François Natali | 2011-08-28 | 1 | -5/+3 |
| | |||||
* | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 6 | -19/+23 |
| | | | | greater than FD_SETSIZE. | ||||
* | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 3 | -1/+11 |
| | | | | | | | | | If the version of zlib used to compile the zlib module is incompatible with the one that is actually linked in, then calls into zlib will fail. This can leave attributes of the z_stream uninitialized, so we must take care to avoid segfaulting by trying to use an invalid pointer. Fix by Richard M. Tew. | ||||
* | Provide a better diagnosis on socket errors | Antoine Pitrou | 2011-08-28 | 1 | -2/+4 |
| | |||||
* | Remove outdated pointer to optparse (fixes #11360). | Éric Araujo | 2011-08-26 | 1 | -3/+0 |
| | | | | The doc already points to argparse. | ||||
* | Add FIXME note as a reminder | Éric Araujo | 2011-08-26 | 1 | -0/+2 |
| | |||||
* | Branch merge | Éric Araujo | 2011-08-26 | 7 | -90/+351 |
|\ |