Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removing bundlebuilder docs again -- it's not to be used anymore (see #779825). | Georg Brandl | 2008-01-21 | 2 | -29/+0 |
| | |||||
* | Add a stub for bundlebuilder documentation. | Georg Brandl | 2008-01-21 | 2 | -0/+29 |
| | |||||
* | #1555501: document plistlib and move it to the general library. | Georg Brandl | 2008-01-21 | 4 | -1/+128 |
| | |||||
* | Fix example. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | mmap is an extension module. | Georg Brandl | 2008-01-21 | 1 | -2/+3 |
| | |||||
* | #1087741: make mmap.mmap the type of mmap objects, not a | Georg Brandl | 2008-01-21 | 3 | -27/+39 |
| | | | | factory function. Allow it to be subclassed. | ||||
* | A bunch of header files were not listed as dependencies for object files. ↵ | Christian Heimes | 2008-01-21 | 1 | -7/+29 |
| | | | | Changes to files like Parser/parser.h weren't picked up by make. | ||||
* | #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. | Georg Brandl | 2008-01-21 | 3 | -1/+31 |
| | |||||
* | Provide a sanity check during PyThreadState_DeleteCurrent() and | Gregory P. Smith | 2008-01-21 | 1 | -0/+10 |
| | | | | | | | | | | | | | | PyThreadState_Delete() to avoid an infinite loop when the tstate list is messed up and has somehow becomes circular and does not contain the current thread. I don't know how this happens but it does, *very* rarely. On more than one hardware platform. I have not been able to reproduce it manually. Attaching to a process where its happening: it has always been in an infinite loop over a single element tstate list that is not the tstate we're looking to delete. It has been in t_bootstrap()'s call to PyThreadState_DeleteCurrent() as a pthread is exiting. | ||||
* | Fix markup. | Georg Brandl | 2008-01-20 | 1 | -4/+4 |
| | |||||
* | #1219903: fix tp_richcompare docs. | Georg Brandl | 2008-01-20 | 1 | -7/+13 |
| | |||||
* | Add blurb about executable scripts on Windows. #760657. | Georg Brandl | 2008-01-20 | 1 | -0/+6 |
| | |||||
* | Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute ↵ | Georg Brandl | 2008-01-20 | 1 | -10/+36 |
| | | | | | | access. Fixes #1087735. | ||||
* | #1876: fix typos in test_operator. | Georg Brandl | 2008-01-20 | 1 | -4/+4 |
| | |||||
* | Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ↵ | Christian Heimes | 2008-01-20 | 5 | -10/+31 |
| | | | | function is not called isfinite() but finite(). Sorry, my fault. :) | ||||
* | Fix test_pyclbr after urllib change. | Georg Brandl | 2008-01-20 | 1 | -0/+1 |
| | |||||
* | #1669: don't allow shutil.rmtree() to be called on a symlink. | Georg Brandl | 2008-01-20 | 4 | -12/+43 |
| | |||||
* | #1648: add sys.gettrace() and sys.getprofile(). | Georg Brandl | 2008-01-20 | 5 | -0/+104 |
| | |||||
* | #652749: document the constants added to the builtins by site.py. | Georg Brandl | 2008-01-20 | 2 | -2/+27 |
| | |||||
* | #799369: document possible sys.platform values. | Georg Brandl | 2008-01-20 | 1 | -3/+20 |
| | |||||
* | #1664522: in urllib, don't read non-existing directories in ftp mode, | Georg Brandl | 2008-01-20 | 2 | -3/+16 |
| | | | | | returning a 0-byte file -- raise an IOError instead. Original patch from Phil Knirsch. | ||||
* | #856047: respect the ``no_proxy`` env var when checking for proxies | Georg Brandl | 2008-01-20 | 3 | -8/+56 |
| | | | | | in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda. | ||||
* | #1178141: add addinfourl.code to get http status code from urllib. | Georg Brandl | 2008-01-20 | 5 | -10/+36 |
| | |||||
* | #1351692: in pprint, always call format() for dict and list items to enable | Georg Brandl | 2008-01-20 | 1 | -55/+60 |
| | | | | custom formatting of contents via subclassing PrettyPrinter. | ||||
* | Document that zipfile decryption is insanely slow and fix a typo and | Gregory P. Smith | 2008-01-20 | 2 | -2/+3 |
| | | | | | blatant lie in a docstring (it is not useful for security regardless of how you spell it). | ||||
* | note for r60121 | Gregory P. Smith | 2008-01-20 | 1 | -0/+3 |
| | |||||
* | Fix zipfile decryption. The check for validity only worked on one | Gregory P. Smith | 2008-01-20 | 2 | -2/+32 |
| | | | | | | | | type of encrypted zip files. Files using extended local headers needed to compare the check byte against different values. (according to reading the infozip unzip crypt.c source code) Fixes issue1003. | ||||
* | Add an interactive test script for exercising curses | Andrew M. Kuchling | 2008-01-20 | 1 | -0/+46 |
| | |||||
* | Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. | Andrew M. Kuchling | 2008-01-20 | 4 | -13/+35 |
| | | | | Fix an off-by-one error I noticed. | ||||
* | Fixes/Accepts Patch for issue1189216 - Work properly with archives | Gregory P. Smith | 2008-01-19 | 2 | -2/+5 |
| | | | | that have file headers past the 2**31 byte boundary. | ||||
* | Fix issue 1300: Quote command line arguments that contain a '|' character in | Gregory P. Smith | 2008-01-19 | 2 | -3/+5 |
| | | | | subprocess.list2cmdline (windows). | ||||
* | Undo an unnecessary else: and indentation that r60104 added. | Gregory P. Smith | 2008-01-19 | 1 | -58/+57 |
| | | | | | | | | | | | | try: ... except: ... raise else: ... the else: is unecessary due to the blind except: with a raise. | ||||
* | Missed one big file to split up. | Georg Brandl | 2008-01-19 | 7 | -1166/+1175 |
| | |||||
* | Split the monstrous C API manual files in smaller parts. | Georg Brandl | 2008-01-19 | 41 | -5068/+5118 |
| | |||||
* | Bug 1296: restore text describing OptionGroup | Andrew M. Kuchling | 2008-01-19 | 1 | -0/+29 |
| | |||||
* | note about r60104 | Gregory P. Smith | 2008-01-19 | 1 | -0/+4 |
| | |||||
* | Fixes issue1336 - a race condition could occur when forking if the gc | Gregory P. Smith | 2008-01-19 | 1 | -58/+71 |
| | | | | | | | kicked in during the critical section. solution: disable gc during that section. Patch contributed by jpa and updated by me to cover the race condition still existing what therve from twistedmatrix pointed out (already seen and fixed in twisted's own subprocess code). | ||||
* | #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods. | Georg Brandl | 2008-01-19 | 2 | -6/+34 |
| | |||||
* | fix comment typos, use not arg instead of arg == "", add test coverage | Gregory P. Smith | 2008-01-19 | 2 | -3/+5 |
| | | | | for inside of the final if needquotes: within subprocess.list2cmdline(). | ||||
* | Patch #1019808 from Federico Schwindt: Return correct socket error when | Andrew M. Kuchling | 2008-01-19 | 3 | -9/+20 |
| | | | | | | | | a default timeout has been set, by using getsockopt() to get the error condition (instead of trying another connect() call, which seems to be a Linuxism). 2.5 bugfix candidate, assuming no one reports any problems with this change. | ||||
* | #1411695: clarify behavior of xml.sax.utils.[un]escape. | Georg Brandl | 2008-01-19 | 1 | -2/+4 |
| | |||||
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 5 | -7/+44 |
| | | | | | ignoring errors, and use this in subprocess to speed up subprocess creation in close_fds mode. Patch by Mike Klaas. | ||||
* | Bug 1277: make Maildir use the user-provided factory instead of hard-wiring ↵ | Andrew M. Kuchling | 2008-01-19 | 2 | -1/+18 |
| | | | | | | MaildirMessage. 2.5.2 bugfix candidate. | ||||
* | Fix #1146: TextWrap vs words 1-character shorter than the width. | Georg Brandl | 2008-01-19 | 3 | -1/+22 |
| | | | | Patch by Quentin Gallet-Gilles. | ||||
* | Fix #1679: "0x" was taken as a valid integer literal. | Georg Brandl | 2008-01-19 | 6 | -16/+45 |
| | | | | | Fixes the tokenizer, tokenize.py and int() to reject this. Patches by Malte Helmert. | ||||
* | Add item | Andrew M. Kuchling | 2008-01-19 | 1 | -0/+7 |
| | |||||
* | missing from r60088 checkin. | Skip Montanaro | 2008-01-19 | 1 | -0/+3 |
| | |||||
* | Comment in NEWS regarding the change in trace.py. | Facundo Batista | 2008-01-19 | 1 | -0/+3 |
| | |||||
* | Fix #1693149. Now you can pass several modules separated by | Facundo Batista | 2008-01-19 | 2 | -6/+10 |
| | | | | | coma to trace.py in the same --ignore-module option. Thanks Raghuram Devarakonda. | ||||
* | Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). | Andrew M. Kuchling | 2008-01-19 | 5 | -9/+88 |
| | | | | Contributed by John Lenton. |