summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Talk about interfaces rather than implementation classes where appropriate.Fred Drake2002-06-252-42/+60
| | | | | | Add hyperlinks to make the documentation on the Attributes and AttributesNS interfaces more discoverable. Closes SF bug #484603.
* Added some more links to the "See also" section.Fred Drake2002-06-251-0/+9
|
* When talking about interfaces, use the interface names, not the namesFred Drake2002-06-251-1/+1
| | | | of the implementation classes. (Remove the "Impl" from two names.)
* Fix typoRaymond Hettinger2002-06-251-1/+1
|
* Close bug 480337: Dict used before dicts explained. Added explanationRaymond Hettinger2002-06-251-2/+11
| | | | and examples of the dict() constructor.
* Close bug 417930 by clarifying augmented assignment docsRaymond Hettinger2002-06-251-0/+14
|
* Not sure how I forgot to check these in - thought I did all the files in oneSkip Montanaro2002-06-252-4/+3
| | | | | fell swoop. Anyway, this just deletes a couple checks for dbm-type header files that are now performed in setup.py. See patch 553108 for details.
* Fix SF bug 568269 by enclosing 'computername' in a raw stringRaymond Hettinger2002-06-251-1/+1
|
* Minor English grammar correctionRaymond Hettinger2002-06-251-1/+1
|
* Remove all EditorWindow BREAK tags when closing DebuggerKurt B. Kaiser2002-06-251-0/+8
|
* Fix spacing in loop exampleRaymond Hettinger2002-06-251-3/+3
|
* Fix SF bug 546434 -- buffer slice type inconsistent.Raymond Hettinger2002-06-252-13/+5
|
* fix incorrect size calc. in IMAP4_SSL.readPiers Lauder2002-06-241-1/+1
|
* In the Extension() call, add runtime_library_dirs so that a usefulBarry Warsaw2002-06-241-0/+10
| | | | | | -R/--rpath flag gets passed to the linker. Source builds of BerkeleyDB do their default installs in locations not normally on ld.so's search path.
* Clear associated breakpoints when closing an edit window.Kurt B. Kaiser2002-06-244-66/+78
| | | | | | | | | | M Debugger.py : Added clear_file_breaks() M EditorWindow.py : Clear breaks when closed, commments->docstrings, comment out some debugging print statements M PyShell.py : comments->docstrings ; clarify extending EditorWindow methods. M RemoteDebugger.py: Add clear_all_file_breaks() functionality, clarify some comments.
* Fix SF bug 572567: Memory leak in object comparison.Raymond Hettinger2002-06-243-0/+14
|
* SF # 572928 One word change for lib/libgettext.texNeal Norwitz2002-06-241-1/+1
| | | | Fix typo.
* - Got rid of non-carbon stuffJack Jansen2002-06-2312-181/+25
| | | | | - Use precompiled headers - Rationalized naming scheme
* Random tweaks & updates.Michael W. Hudson2002-06-231-12/+13
|
* Fix IMAP4_SSL read and send methods to take account of short dataPiers Lauder2002-06-231-3/+16
|
* Convert the example C code to ANSI rather than K&R.Fred Drake2002-06-221-19/+17
| | | | | This matches the Python C style guide (PEP 7). Closes SF patch #571489.
* Correct the RE equivalent of scanf()'s %x and %X patterns.Fred Drake2002-06-221-1/+1
| | | | Closes SF bug #572169.
* Patch #557719 by Tony Lownds, slightly massaged by me: streamline theJack Jansen2002-06-216-25/+114
| | | | | | | | | OSX framework build process. Things fixed/modified: - the filesystem case-sensitivity test now works for builds outside the source directory - various other fixes for building outside the source directory - python.app now has a target in the main Makefile - WASTE and AquaTk are found more automatically
* Typo fix.Greg Ward2002-06-211-1/+1
|
* Add a check that the bug Jeremy just fixed in _PyTuple_Resize() isGuido van Rossum2002-06-211-0/+5
| | | | | | fixed. (Jeremy, how did you discover that?)
* Mention private vars in __slots__.Guido van Rossum2002-06-211-0/+3
|
* Fix for SF bug 571885Jeremy Hylton2002-06-201-2/+2
| | | | | When resizing a tuple, zero out the memory starting at the end of the old tuple not at the beginning of the old tuple.
* - Got rid of newmodule.cJack Jansen2002-06-204-3/+1
| | | | - These are the final projects that support classic.
* SF 569257 -- Name mangle double underscored variable names in __slots__.Raymond Hettinger2002-06-204-7/+49
|
* Corrected return type and value information for PyUnicode_Count() andFred Drake2002-06-202-16/+20
| | | | | PyUnicode_Find(). This closes SF bug #566631.
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-201-2/+3
| | | | Closes SF bug #571759.
* Disable the test for importing very long lists for MacPython: it triggersJack Jansen2002-06-201-1/+2
| | | | | an out-of-memory condition (and a hang on OSX). Filed a bug report (#571845) to make sure this is eventually fixed.
* Make the docs for string.capitalize() match those of str.capitalize()Fred Drake2002-06-201-1/+1
| | | | | (which makes it more clear). Closes SF bug #571767.
* Add a note that divmod() with complex numbers is deprecated.Fred Drake2002-06-201-0/+3
|
* Added reference to the Expat home page.Fred Drake2002-06-201-0/+6
|
* Try to improve the explanation of the "raise" statement and how its argumentsFred Drake2002-06-202-33/+39
| | | | | are interpreted. This closes SF bug #532467.
* Open the source file in universal newline mode.Jack Jansen2002-06-201-1/+1
|
* Clean up docstrings:Fred Drake2002-06-201-110/+105
| | | | | | | - Include a blank line between the signature line and the description (Guido sez). - Don't include "-> None" for API functions that always return None because they don't have a meaningful return value.
* Removed the generator future-stmt -- not needed for 2.3.Tim Peters2002-06-201-1/+0
|
* Simplify the production for argument list, making sure that itFred Drake2002-06-201-4/+4
| | | | | | actually allows all the legal syntax, and nothing else. Previously, it did not allow a call like func(arg, **dictionary). This closes (again!) SF bug #493243.
* SF 563530 added missing methods for emulating numeric typesRaymond Hettinger2002-06-201-1/+5
|
* 1. Debugger Breakpoints, finish implementationKurt B. Kaiser2002-06-204-27/+79
| | | | | 2. Debugger Clear Breakpoints, implement 3. Nice yellow breakpoints for Chui :)
* I get failures half of the time that I run this, so I'll disableGuido van Rossum2002-06-201-2/+2
| | | | | running this as part of the regular test suite again, until I have time to figure out why.
* SF 570727 indexer() class no longer needed since lists now support slicingRaymond Hettinger2002-06-201-13/+4
|
* Fix the bug described inMichael W. Hudson2002-06-194-7/+233
| | | | | | | | | http://mail.python.org/pipermail/python-dev/2002-June/025461.html with test cases. Also includes extended slice support for arrays, which I thought I'd already checked in but obviously not.
* Mention pymemcompat.h.Guido van Rossum2002-06-181-1/+6
|
* Minor tweaks to existing items (radian/degree, and UTF-16 readers..Guido van Rossum2002-06-181-5/+5
|
* Typo: bites --> bytesFred Drake2002-06-181-1/+1
| | | | (Hanging around small kids too much...;)
* Add description of the deadlock problem with child processes and pipes, andFred Drake2002-06-182-0/+67
| | | | | hints about how to work around it. Closes SF bug #530637.
* Add a note about "as" not being a keyword, though it has special meaningFred Drake2002-06-181-0/+7
| | | | | | | | when used as part of the import statement. Note that both "as" and "None" becoming keywords in the future. Closes SF bug #553262.