Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace C++ comments with C comments. | Thomas Heller | 2007-01-17 | 1 | -8/+12 |
| | |||||
* | Remove Calvin since he only has access to the website currently. | Neal Norwitz | 2007-01-17 | 1 | -3/+0 |
| | |||||
* | Give Calvin Spealman access for python-dev summaries. | Neal Norwitz | 2007-01-17 | 1 | -0/+3 |
| | |||||
* | Fixed ntpath.expandvars to not replace references to non-existing | Sjoerd Mullender | 2007-01-16 | 4 | -2/+32 |
| | | | | | variables with nothing. Also added tests. This fixes bug #494589. | ||||
* | Add news items for the recent pybench and platform changes. | Marc-André Lemburg | 2007-01-16 | 1 | -0/+22 |
| | |||||
* | Updated rotating file handlers to use _open(). | Vinay Sajip | 2007-01-16 | 1 | -10/+6 |
| | |||||
* | Add a note for strptime that just because strftime supports some extra | Brett Cannon | 2007-01-15 | 1 | -0/+6 |
| | | | | directive that is not documented that strptime will as well. | ||||
* | Doc patch matching r53434 (htonl etc. now always take/return positive ints). | Guido van Rossum | 2007-01-15 | 1 | -4/+4 |
| | |||||
* | Added documentation for WatchedFileHandler (based on SF patch #1598415) | Vinay Sajip | 2007-01-14 | 1 | -2/+38 |
| | |||||
* | Added WatchedFileHandler (based on SF patch #1598415) | Vinay Sajip | 2007-01-14 | 1 | -0/+49 |
| | |||||
* | Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept or | Guido van Rossum | 2007-01-14 | 4 | -4/+42 |
| | | | | return negative numbers, per the underlying C implementation. | ||||
* | Handle old-style instances more gracefully (display documentation on | Ka-Ping Yee | 2007-01-14 | 1 | -6/+13 |
| | | | | the relevant class instead of documentation on <type 'instance'>). | ||||
* | Remove a dependency of this test on $COLUMNS. | Guido van Rossum | 2007-01-14 | 1 | -2/+10 |
| | |||||
* | Merged changes from standalone version 2.3.3. This should probably all be | Gerhard Häring | 2007-01-14 | 22 | -490/+574 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merged into the 2.5 maintenance branch: - self->statement was not checked while fetching data, which could lead to crashes if you used the pysqlite API in unusual ways. Closing the cursor and continuing to fetch data was enough. - Converters are stored in a converters dictionary. The converter name is uppercased first. The old upper-casing algorithm was wrong and was replaced by a simple call to the Python string's upper() method instead. -Applied patch by Glyph Lefkowitz that fixes the problem with subsequent SQLITE_SCHEMA errors. - Improvement to the row type: rows can now be iterated over and have a keys() method. This improves compatibility with both tuple and dict a lot. - A bugfix for the subsecond resolution in timestamps. - Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are checked for. Now they work as documented. - gcc on Linux sucks. It exports all symbols by default in shared libraries, so if symbols are not unique it can lead to problems with symbol lookup. pysqlite used to crash under Apache when mod_cache was enabled because both modules had the symbol cache_init. I fixed this by applying the prefix pysqlite_ almost everywhere. Sigh. | ||||
* | Jython doesn't have sys.setcheckinterval() - ignore it in that case. | Marc-André Lemburg | 2007-01-13 | 1 | -1/+1 |
| | |||||
* | Use defaults if sys.executable isn't set (e.g. on Jython). | Marc-André Lemburg | 2007-01-13 | 1 | -1/+4 |
| | | | | This change allows running PyBench under Jython. | ||||
* | Add Python implementation to the machine details. | Marc-André Lemburg | 2007-01-13 | 1 | -27/+43 |
| | | | | | | | | | | | | | Pretty-print the Python version used for running PyBench. Let the user know when calibration has finished. [ 1563844 ] pybench support for IronPython: Simplify Unicode version detection. Make garbage collection and check interval settings optional if the Python implementation doesn't support thess (e.g. IronPython). | ||||
* | Fix for bug #1634343: allow specifying empty arguments on Windows | Peter Astrand | 2007-01-13 | 2 | -1/+3 |
| | |||||
* | Add parameter sys_version to _sys_version(). | Marc-André Lemburg | 2007-01-13 | 1 | -16/+47 |
| | | | | | | | | Change the cache for _sys_version() to take the parameter into account. Add support for parsing the IronPython 1.0.1 sys.version value - even though it still returns '1.0.0'; the version string no longer includes the patch level. | ||||
* | Fix grammar in docstrings | Neal Norwitz | 2007-01-13 | 1 | -2/+2 |
| | |||||
* | Bump version number and change copyright year. | Marc-André Lemburg | 2007-01-13 | 1 | -63/+259 |
| | | | | | | | | | | | | | | | Add new API linux_distribution() which supports reading the full distribution name and also knows how to parse LSB-style release files. Redirect the old dist() API to the new API (using the short distribution name taken from the release file filename). Add branch and revision to _sys_version(). Add work-around for Cygwin to libc_ver(). Add support for IronPython (thanks for Anthony Baxter) and make Jython support more robust. | ||||
* | Fix typo. | Georg Brandl | 2007-01-13 | 1 | -1/+1 |
| | |||||
* | Deprecate the sets module. | Brett Cannon | 2007-01-13 | 5 | -0/+15 |
| | |||||
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -0/+2 |
| | | | | Kammerhofer. | ||||
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -28/+50 |
| | | | | | | | Kammerhofer. release25-maint backport candidate, but the release manager has to decide. | ||||
* | Avoid warnings in the test suite because ctypes.wintypes cannot be | Thomas Heller | 2007-01-12 | 1 | -1/+2 |
| | | | | imported on non-windows systems. | ||||
* | add parsetok.h as a dependency - previously, changing this file doesn't | Anthony Baxter | 2007-01-12 | 1 | -0/+3 |
| | | | | cause the right files to be rebuilt. | ||||
* | Fix error where the end of a funcdesc environment was accidentally moved too | Brett Cannon | 2007-01-12 | 1 | -1/+1 |
| | | | | far down. | ||||
* | Correct the comments: the code is right. | Thomas Heller | 2007-01-11 | 1 | -2/+2 |
| | |||||
* | Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions | Thomas Heller | 2007-01-11 | 4 | -6/+36 |
| | | | | | of HANDLE, WPARAM, LPARAM data types. Make parameterless foreign function calls work. | ||||
* | SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). | Raymond Hettinger | 2007-01-11 | 2 | -2/+13 |
| | |||||
* | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 2 | -1/+3 |
| | |||||
* | - Make the documentation match the code and the docstring | Matthias Klose | 2007-01-11 | 1 | -1/+1 |
| | |||||
* | Fix the signature of log_error(). (A subclass that did the right thing | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
| | | | | was getting complaints from pychecker.) | ||||
* | Must change the version number in the _ctypes extension as well. | Thomas Heller | 2007-01-10 | 1 | -1/+1 |
| | |||||
* | Change the ctypes version number to "1.1.0". | Thomas Heller | 2007-01-10 | 2 | -1/+3 |
| | |||||
* | Minor change in int() docstring for proper spacing. | Gustavo Niemeyer | 2007-01-10 | 1 | -1/+1 |
| | |||||
* | Mention in the int() docstring that a base zero has meaning, as | Gustavo Niemeyer | 2007-01-10 | 1 | -2/+3 |
| | | | | stated in http://docs.python.org/lib/built-in-funcs.html as well. | ||||
* | Verify the sizes of the basic ctypes data types against the struct | Thomas Heller | 2007-01-09 | 1 | -0/+28 |
| | | | | | | module. Will backport to release25-maint. | ||||
* | Added a docstring | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | |||||
* | Added entry about addition of _open() method to logging.FileHandler. | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | |||||
* | Bug #1627575: Added _open() method to FileHandler which can be used to ↵ | Vinay Sajip | 2007-01-09 | 1 | -9/+14 |
| | | | | reopen files. The FileHandler instance now saves the encoding (which can be None) in an attribute called "encoding". | ||||
* | Added entries about removal of some bare except clauses from logging. | Vinay Sajip | 2007-01-08 | 1 | -0/+9 |
| | |||||
* | Bare except clause removed from LogRecord.__init__. Now, only ValueError, ↵ | Vinay Sajip | 2007-01-08 | 1 | -3/+3 |
| | | | | | | TypeError and AttributeError are trapped. (SF #411881) | ||||
* | Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ↵ | Vinay Sajip | 2007-01-08 | 1 | -2/+2 |
| | | | | | | | trapped. Bare except clause removed from SocketHandler.createSocket(). Now, only socket.error is trapped. (SF #411881) | ||||
* | Fix zero-length corner case for iterating over a mutating deque. | Raymond Hettinger | 2007-01-08 | 2 | -3/+8 |
| | |||||
* | Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. | Peter Astrand | 2007-01-07 | 1 | -3/+4 |
| | |||||
* | Re-implemented fix for #1531862 once again, in a way that works with Python ↵ | Peter Astrand | 2007-01-07 | 1 | -2/+6 |
| | | | | 2.2. Fixes bug #1603424. | ||||
* | Add Josiah to SF for maintaining asyncore/asynchat | Neal Norwitz | 2007-01-06 | 1 | -0/+3 |
| | |||||
* | update to (c) years to include 2007 | Anthony Baxter | 2007-01-06 | 7 | -11/+12 |
| |