Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug #1213894: os.path.realpath didn't resolve symlinks that were the first | Georg Brandl | 2005-06-03 | 3 | -1/+24 |
| | | | | component of the path. | ||||
* | fix object.__divmod__.__doc__ | Anthony Baxter | 2005-06-03 | 1 | -2/+8 |
| | | | | backport candidate | ||||
* | M-x untabify | Michael W. Hudson | 2005-06-03 | 1 | -9/+9 |
| | |||||
* | Update permissions for Birkenfeld. | Raymond Hettinger | 2005-06-03 | 1 | -1/+2 |
| | |||||
* | pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison | Gregory P. Smith | 2005-06-03 | 4 | -1/+381 |
| | | | | | | functions written in python. contributed by <frederic.gobry@epfl.ch> | ||||
* | Delete some vestigial code; execution will never reach the 'if' statement if ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -6/+1 |
| | | | | args is NULL | ||||
* | [Bug #1209880] Describe only the True/False return values from lock.acquire() | Andrew M. Kuchling | 2005-06-02 | 2 | -4/+3 |
| | |||||
* | [Bug #1193001] Make the notation section use the same productionlist env. as ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -5/+5 |
| | | | | other grammar rules | ||||
* | [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one | Andrew M. Kuchling | 2005-06-02 | 1 | -0/+10 |
| | |||||
* | [Bug #1177831] Fix generation of code for GROUPREF_EXISTS. Thanks to Andre ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
| | | | | Malo for the fix. | ||||
* | Patch #1212117: Add optional attribute st_flags to os.stat_result | Hye-Shik Chang | 2005-06-02 | 6 | -3/+134 |
| | | | | | when the member is available on the platform. (Contributed by Diego Petteno) | ||||
* | Fix compiler.ast.flatten function so that it works on lists. | Neil Schemenauer | 2005-06-02 | 3 | -8/+13 |
| | |||||
* | [Bug #1152762] Ensure _end_of_line() returns an x-coordinate that's within ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
| | | | | the text box | ||||
* | added GET/SETANNOTATION methods | Piers Lauder | 2005-06-01 | 2 | -9/+46 |
| | |||||
* | [Bug #1105706] Use correct name for constant | Andrew M. Kuchling | 2005-06-01 | 1 | -2/+2 |
| | |||||
* | [Bug #1123268] Fix typo | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | |||||
* | [Bug #1181939] Remove incorrect text about __init__; move map discussion ↵ | Andrew M. Kuchling | 2005-06-01 | 1 | -5/+4 |
| | | | | into a separate paragraph | ||||
* | [Bug #1194249] Fix duplicate assignment in example code | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | |||||
* | NEWS entry for the patch I checked in last week. | Michael W. Hudson | 2005-06-01 | 1 | -0/+4 |
| | |||||
* | SF bug #1209411: divmod documentation shd reference // not / | Raymond Hettinger | 2005-05-31 | 2 | -2/+2 |
| | |||||
* | SF bug #1202395: Description of string.lstrip() needs improvement | Raymond Hettinger | 2005-05-31 | 1 | -15/+33 |
| | | | | Clarify the role of the chars argument in the strip() methods. | ||||
* | Add permissions for Reinhold Birkenfeld. | Raymond Hettinger | 2005-05-28 | 1 | -0/+5 |
| | |||||
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 5 | -251/+639 |
| | | | | | | | | | | | | | | [ 1181301 ] make float packing copy bytes when they can which hasn't been reviewed, despite numerous threats to check it in anyway if noone reviews it. Please read the diff on the checkin list, at least! The basic idea is to examine the bytes of some 'probe values' to see if the current platform is a IEEE 754-ish platform, and if so _PyFloat_{Pack,Unpack}{4,8} just copy bytes around. The rest is hair for testing, and tests. | ||||
* | Fix test_site to not call open('...', 'wU'), as that now raises an error. | Michael W. Hudson | 2005-05-27 | 1 | -1/+1 |
| | | | | Is anyone running the test suite regularly at the moment? | ||||
* | SF bug #1209671: dict.popitem documentation should mention empty dict case | Raymond Hettinger | 2005-05-27 | 1 | -1/+2 |
| | |||||
* | Fix: | Michael W. Hudson | 2005-05-26 | 1 | -0/+2 |
| | | | | | | | [ 1207501 ] Issue in grammar We didn't define dotted_name in the pseudo-grammar in the reference docs. Backport candidate. | ||||
* | fix description of the input range of unichr() | Fred Drake | 2005-05-25 | 1 | -1/+2 |
| | | | | (closes SF bug #1120777) | ||||
* | update documentation on what constitutes a line in a source file | Fred Drake | 2005-05-25 | 1 | -5/+12 |
| | | | | (closes SF bug #1167922) | ||||
* | Disallow opening files with modes 'aU' or 'wU' as specified by PEP | Skip Montanaro | 2005-05-20 | 3 | -0/+64 |
| | | | | 278. Closes bug 967182. | ||||
* | Patch #1197318: Cygwin case-sensitive import patch | Jason Tishler | 2005-05-20 | 1 | -17/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | A problem regarding importing symlinked modules was recently reported on the Cygwin mailing list: http://cygwin.com/ml/cygwin/2005-04/msg00257.html The following test case demonstrates the problem: $ ls -l total 1 lrwxrwxrwx 1 jt None 6 Apr 23 13:32 bar.py -> foo.py -rw-r--r-- 1 jt None 24 Apr 18 20:13 foo.py $ python -c 'import bar' Traceback (most recent call last): File "<string>", line 1, in ? ImportError: No module named bar Since Cygwin's case_ok() uses a modified version of the Windows's version, the symlinked bar module actually resolves to file foo.py instead of bar.py. This obviously causes the matching code to fail (regardless of case). The patch fixes this problem by making Cygwin use the Mac OS X case_ok() instead of a modified Window's version. | ||||
* | Whitespace normalization. | Tim Peters | 2005-05-18 | 1 | -1/+1 |
| | |||||
* | Add O_SHLOCK & O_EXLOCK. Closes patch #1103951. | Skip Montanaro | 2005-05-16 | 3 | -1/+14 |
| | |||||
* | Fixed a quite misleading comment: a "not" should not have been there. | Armin Rigo | 2005-05-15 | 1 | -1/+1 |
| | |||||
* | This test relied on short-circuiting details of dictobject.py to avoid | Armin Rigo | 2005-05-15 | 1 | -4/+2 |
| | | | | | | | | | crashing, and indirectly on the fact that hash codes in random.randrange(1000000000) were very unlikely to exhibit collisions. To see the problem, replace this number with 500 and observe the crash on either del target[key] or del keys[i]. The fix prevents recursive mutation, just as in the key insertion case. | ||||
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | Skip Montanaro | 2005-05-14 | 4 | -30/+127 |
| | |||||
* | SF patch #1200051: Small optimization for PyDict_Merge() | Raymond Hettinger | 2005-05-14 | 1 | -0/+6 |
| | | | | (Contributed by Barry Warsaw and Matt Messier.) | ||||
* | SF bug #1201807: Glossary listing bug | Raymond Hettinger | 2005-05-14 | 1 | -1/+1 |
| | |||||
* | credit source of idea for recent doc changes | Skip Montanaro | 2005-05-12 | 1 | -0/+1 |
| | |||||
* | Incorporate a lightly edited version of the SocketServer module's docstring | Skip Montanaro | 2005-05-12 | 1 | -1/+82 |
| | | | | | into the docs and segregate the method descriptions for the various classes into separate sections. Base on suggestion by Paul Rubin in c.l.py. | ||||
* | Improve subprocess link error notification | Kurt B. Kaiser | 2005-05-10 | 3 | -3/+9 |
| | | | | | | M NEWS.txt M PyShell.py M rpc.py | ||||
* | SF bug #1193890: calendar.weekheader not found in __all__ | Raymond Hettinger | 2005-05-10 | 1 | -1/+2 |
| | |||||
* | Use Queue's blocking feature instead of sleeping in the main | Kurt B. Kaiser | 2005-05-05 | 2 | -2/+4 |
| | | | | loop. Patch # 1190163 Michiel de Hoon | ||||
* | Don't use 'is not' to compare strings. | Michael W. Hudson | 2005-05-04 | 1 | -1/+1 |
| | | | | (spotted by reading pypy-svn :) | ||||
* | Update Paul Prescod's permissions. | Raymond Hettinger | 2005-04-30 | 1 | -0/+2 |
| | |||||
* | SF patch #1191489: Simplify logic in random.py | Raymond Hettinger | 2005-04-30 | 1 | -9/+10 |
| | |||||
* | Fix error in a docstring where a single quote started the docstring but triple | Brett Cannon | 2005-04-30 | 1 | -1/+1 |
| | | | | | | quote ended it. Closes bug #1192777. Thanks Christopher Smith. | ||||
* | Fixed a typo in docstring I happened upon. | Guido van Rossum | 2005-04-30 | 1 | -1/+1 |
| | |||||
* | SF bug #1190451: 6.9 First sentence is confusing | Raymond Hettinger | 2005-04-28 | 1 | -7/+8 |
| | | | | | | | * Fixed incorrect wording: expression->exception * Noted the specific exception reported by "raise" when the is nothing to re-raise. * Eliminated several instances of "e.g." as recommended in the style guide. | ||||
* | Fix | Michael W. Hudson | 2005-04-27 | 1 | -2/+2 |
| | | | | | | [ python-Bugs-1190599 ] dir() docs show incorrect output though not entirely how it's suggested in the bug report. | ||||
* | Fix typo. | Raymond Hettinger | 2005-04-26 | 1 | -1/+1 |
| |