Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 10 | -76/+326 |
| | | | | | | | conversion using the proper magic slot (e.g., __int__()). Also move conversion code out of PyNumber_*() functions in the C API into the nb_* function. Applied patch #1109424. Thanks Walter Doewald. | ||||
* | Make parse_makefile fallback to environment variables if nothing is | Martin v. Löwis | 2005-04-25 | 3 | -24/+17 |
| | | | | | defined in the makefile. Get CFLAGS from the Makefile, instead of getting OPT, BASE_CFLAGS and EXTRA_CFLAGS individually. | ||||
* | Introduced EXTRA_CFLAGS as an environment variable used by the Makefile. Meant | Brett Cannon | 2005-04-24 | 5 | -7/+15 |
| | | | | | | | to be used for flags that change binary compatibility. Distutils was tweaked to also use the variable if used during compilation of the interpreter. | ||||
* | Update test to the current readline() behaviour. | Walter Dörwald | 2005-04-21 | 1 | -0/+2 |
| | |||||
* | Fix comment. | Walter Dörwald | 2005-04-21 | 1 | -2/+2 |
| | |||||
* | If the data read from the bytestream in readline() ends in a '\r' read one more | Walter Dörwald | 2005-04-21 | 2 | -12/+10 |
| | | | | | | | | | | | byte, even if the user has passed a size parameter. This extra byte shouldn't cause a buffer overflow in the tokenizer. The original plan was to return a line ending in '\r', which might be recognizable as a complete line and skip any '\n' that was read afterwards. Unfortunately this didn't work, as the tokenizer only recognizes '\n' as line ends, which in turn lead to joined lines and SyntaxErrors, so this special treatment of a split '\r\n' has been dropped. (It can only happen with a temporarily exhausted bytestream now anyway.) Fixes parts of SF bugs #1163244 and #1175396. | ||||
* | Clarify usage of OPT by noting that if it is set the default values will be | Brett Cannon | 2005-04-20 | 1 | -1/+2 |
| | | | | left out. | ||||
* | Fix tests dependent on the exception raised by non-settable descriptors. | Barry Warsaw | 2005-04-20 | 3 | -5/+6 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2005-04-20 | 3 | -3/+3 |
| | |||||
* | As per discussion on python-dev, descriptors defined in C with a NULL setter | Barry Warsaw | 2005-04-19 | 2 | -2/+7 |
| | | | | | now raise AttributeError instead of TypeError, for consistency with their pure-Python equivalent. | ||||
* | Add a line explaining what env var to use to set the compiler flags and an | Brett Cannon | 2005-04-19 | 1 | -0/+3 |
| | | | | example of how to do it so that it is passed directly to ./configure . | ||||
* | Correct swapped descriptions of empty string splits. | Raymond Hettinger | 2005-04-19 | 1 | -2/+2 |
| | |||||
* | Fix: | Michael W. Hudson | 2005-04-18 | 2 | -1/+7 |
| | | | | | | | | [ 1176893 ] Readline segfault by unsilly-ing PyGILState_Release(). Backport candidate. | ||||
* | Updated to work with current Python docs setup, and added a minimal README. | Jack Jansen | 2005-04-17 | 2 | -13/+54 |
| | |||||
* | Fix building of spwd; was incorrectly checking for the needed HAVE_* values to | Brett Cannon | 2005-04-15 | 1 | -4/+5 |
| | | | | | | | | properly build the module. Also moved up the creation of config_h_vars (from distutils.sysconfig.parse_config_h()) higher on up in detect_modules() so that it can be used sooner). | ||||
* | SF bug #1183742: PyDict_Copy() can return non-NULL value on error | Raymond Hettinger | 2005-04-15 | 1 | -1/+1 |
| | |||||
* | typo fix, thanks Jeremy Sanders | Anthony Baxter | 2005-04-15 | 1 | -1/+1 |
| | |||||
* | SF patch #1180062 by George Yoshida: | Walter Dörwald | 2005-04-14 | 2 | -3/+3 |
| | | | | | Doc/lib/libfunctional.tex: "in an new object" should read "in a new object" Doc/lib/libsubprocess.tex: argument name is wrong; comma is missing. | ||||
* | Update permissions for Finn Bock. | Raymond Hettinger | 2005-04-13 | 1 | -0/+2 |
| | |||||
* | get_method() returns a method name, not take it as an argument | Fred Drake | 2005-04-13 | 1 | -2/+2 |
| | | | | (backporting to release24-maint branch) | ||||
* | Fix HTTP method handler example so that method names in uppercases | Hye-Shik Chang | 2005-04-12 | 1 | -1/+1 |
| | | | | can be processed. (Submitted by Jooncheol Park) | ||||
* | Update permissions for Eric Price. | Raymond Hettinger | 2005-04-11 | 1 | -0/+2 |
| | |||||
* | SF bug #1180392: StringIO's docs should mention overwriting of initial value | Raymond Hettinger | 2005-04-11 | 1 | -0/+1 |
| | | | | | * Added a note that the initial file position is zero even if the object is freshly initialized. | ||||
* | SF bug #1179957: Missing def'n of equality for set elements | Raymond Hettinger | 2005-04-10 | 2 | -1/+7 |
| | |||||
* | Update status for Irme de Jong. | Raymond Hettinger | 2005-04-10 | 1 | -0/+3 |
| | |||||
* | SF patch 1179503: Fix typos in rpc.py | Raymond Hettinger | 2005-04-10 | 1 | -16/+18 |
| | | | | | | * Call to unpack_int() should have no arguments * Misspelled BadRPCVerspion exception * Replace <> with != | ||||
* | Fill out one section | Andrew M. Kuchling | 2005-04-09 | 1 | -3/+20 |
| | |||||
* | Add more text | Andrew M. Kuchling | 2005-04-09 | 1 | -7/+29 |
| | |||||
* | * Fix error in definition of Im() which returned self instead of 0 | Raymond Hettinger | 2005-04-09 | 1 | -19/+14 |
| | | | | | | | | | | | | | | | | for non-complex arguments. * Replace type() comparisons with isinstance() checks. * Replace apply() calls with equivalent syntactic form. * Simplify __hash__ definition to hash the underlying tuple. * Use math.hypot() for more robust computation of __abs__(). * Use sorted() instead of the multi-step keys/sort/iter. * Update comment on the cmath module. | ||||
* | Patch #1177597: Fix various bugs in Demo/classes/Complex.py. | Martin v. Löwis | 2005-04-09 | 1 | -0/+1 |
| | |||||
* | Patch #1177597: Correct various bugs, add comments. | Martin v. Löwis | 2005-04-09 | 1 | -9/+36 |
| | |||||
* | Add grammar change for allowing ``class B(): pass`` syntax. | Brett Cannon | 2005-04-09 | 1 | -1/+1 |
| | |||||
* | Flush out support for ``class B(): pass`` syntax by adding support to the | Brett Cannon | 2005-04-09 | 5 | -8/+27 |
| | | | | | | 'parser' module and 'compiler' package. Closes patch #1176012. Thanks logistix. | ||||
* | Add test for ``class B1(): pass``. | Brett Cannon | 2005-04-09 | 1 | -1/+2 |
| | |||||
* | Record removal of permissions for Charles Waldman. | Raymond Hettinger | 2005-04-08 | 1 | -0/+6 |
| | |||||
* | Add ESR info. | Tim Peters | 2005-04-08 | 1 | -0/+5 |
| | |||||
* | Record a drop request by Ken Manheimer. | Raymond Hettinger | 2005-04-08 | 1 | -1/+1 |
| |