summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sync tixwidgets from Mike Clarkson, a maintainerNeal Norwitz2002-11-141-152/+147
|
* Sync Tix from Mike Clarkson, a maintainerNeal Norwitz2002-11-141-55/+114
|
* Remove 'created by' lines; people can use CVS for this, and the information ↵Andrew M. Kuchling2002-11-1434-72/+1
| | | | is often out of date
* Fix typo in commentNeal Norwitz2002-11-141-1/+1
|
* Fix docstring typo; remove 'created' lineAndrew M. Kuchling2002-11-141-3/+1
|
* [Bug #550364] Use sysconfig.get_python_version()Andrew M. Kuchling2002-11-142-3/+3
|
* [Bug #550364] Add get_python_version()Andrew M. Kuchling2002-11-141-1/+9
|
* [Bug #599248] ext module generation problemAndrew M. Kuchling2002-11-141-2/+2
| | | | | | | | | | If you have source files srcdir1/foo.c and srcdir2/foo.c, the temporary .o for both files is written to build/temp.<platform>/foo.o. This patch sets strip_dir to false for both calls to object_filename, so now the object files are written to temp.<platform>/srcdir1/foo.o and .../srcdir2/foo.o. 2.2 bugfix candidate
* Make nntplib aware of ~/.netrc credentials; now they get used if they areEric S. Raymond2002-11-131-7/+23
| | | | | | | | | | | | present and the caller has not specified a name/password pair. This change makes it less likely that a lazy coder will expose sensitive information in a word-readable script. Also, make the test a bit smarter. If NNTPSERVER is defined in the environment it will go talk to that server rather than look for a possibly nonexistent local one named 'news'. Maybe the osession initializer ought to look at NNTPSERVER rather than requiring a host arg? Must look around and see how universal this convention is first.
* Add some simple tests of the persistence hooks.Jeremy Hylton2002-11-131-0/+35
|
* Remove inst_persistent_id() WANNI (we ain't never needed it).Jeremy Hylton2002-11-132-16/+29
| | | | Add some simple tests of the persistence hooks.
* remove debugging printJeremy Hylton2002-11-131-2/+0
|
* Tim wins a bet. Don't use re.Guido van Rossum2002-11-131-2/+2
|
* Allow unknown keyword arguments to the Extension class, and warn about them.Andrew M. Kuchling2002-11-131-1/+14
|
* Add getstate and setstate implementation to concrete set classes.Jeremy Hylton2002-11-132-1/+21
|
* Integrate updates to the GNU info conversion.Fred Drake2002-11-133-60/+85
| | | | | This includes SF patch #590352 and additional support for more of the custom markup.
* - Committing the modified signature lines I've been using for a longFred Drake2002-11-131-3/+7
| | | | | | time in http://www.python.org/dev/doc/. There have been no bug reports on these for a long time now. - Remove local "use" statement that duplicates a top-level "use".
* Document struct_time and the field names.Fred Drake2002-11-131-14/+25
|
* Add \funcline, \funclineni, and \methodlineni to the list of functionsFred Drake2002-11-131-0/+3
| | | | | that are processed before their arguments. Closes SF bug #637807.
* Fix broken markup.Fred Drake2002-11-131-1/+1
| | | | Closes SF bug #637807.
* Remove some test code.Jeremy Hylton2002-11-131-33/+0
| | | | | The buggy yahoo server was fixed, and the opalgroup test files are gone.
* Fix SF bug #637789: Handle Proxy-Connection header.Jeremy Hylton2002-11-131-15/+25
| | | | Also, remove unused local variable noted by pychecker.
* Back out part of rev. 1.53, restoring the use of the string module.Andrew M. Kuchling2002-11-131-4/+6
| | | | | | The two long lines have been reflowed differently; hopefully someone on BeOS can test them. Rev. 1.53 also converted string.atoi() to int(); I've left that alone.
* News about the logging module.Guido van Rossum2002-11-131-0/+3
|
* Get rid of #! lines, references to usage as __main__, README.txt, andGuido van Rossum2002-11-133-36/+4
| | | | http://www.red-dove.com/python_logging.html.
* Adding Vinay Sajip's logging package.Guido van Rossum2002-11-133-0/+2190
|
* Typo: it's --> itsFred Drake2002-11-131-1/+1
| | | | Closes SF bug #637810.
* Update: Older versions of Python crashed when calling repr()Fred Drake2002-11-131-3/+5
| | | | | | (including the implied call using back-ticks) of a recursive object, but this is no longer the case. Reported by Manus Hand via email.
* Improved clarity and thoroughness of docstring.Raymond Hettinger2002-11-131-20/+41
| | | | | | | | Added design notes in comments. Used better variable names. Eliminated the unsavory "pool[-k:]" which was an aspiring bug (for k==0). Used if/else to show the two algorithms in parallel style. Added one more test assertion.
* Clarify that PyImport_AddModule() and PyImport_ExecCodeModule() don'tFred Drake2002-11-131-3/+7
| | | | | | add any package support structure even if a dotted-name is passed for the module. Closes SF bug #424106.
* Normalize whitespace.Fred Drake2002-11-131-61/+62
| | | | Fix a number of markup consistency buglets.
* Fix typo in comment.Fred Drake2002-11-131-2/+2
|
* Update fileAndrew M. Kuchling2002-11-131-10/+14
|
* Docstring typo fixAndrew M. Kuchling2002-11-131-1/+1
|
* Fill out the 'Porting' sectionAndrew M. Kuchling2002-11-131-2/+62
| | | | Add random.sample()
* The libsocket/libnsl problem is specific to IRIX 4. Confirmed by Tim Rice.Martin v. Löwis2002-11-132-3/+3
|
* Fix SF # 464405, freeze doesn't like DOS files on LinuxNeal Norwitz2002-11-121-2/+2
| | | | Use universal newline support when opening a file for freezing.
* Clarified meaning of \w and \W with respect to the UNICODE and LOCALE flags.Fred Drake2002-11-121-5/+5
| | | | Closes SF bug #635595.
* SF # 627900, Bytecode copy bug in freezeNeal Norwitz2002-11-121-1/+2
| | | | | Pass co_freevars and co_cellvars to new.code(). Will backport.
* Fix SF # 635969, No error "not all arguments converted"Neal Norwitz2002-11-123-2/+12
| | | | | | | | | When mwh added extended slicing, strings and unicode became mappings. Thus, dict was set which prevented an error when doing: newstr = 'format without a percent' % string_value This fix raises an exception again when there are no formats and % with a string value.
* Handle the Content-Type header a little more appropriately: if itFred Drake2002-11-121-0/+3
| | | | | | contains options, drop them to get the major/minor content type. Modified from the supplied patch to support more whitespace variation. Closes SF patch #613605.
* SF patch 637176: list.sort crasherTim Peters2002-11-125-100/+78
| | | | | | | | | | | Armin Rigo's Draconian but effective fix for SF bug 453523: list.sort crasher slightly fiddled to catch more cases of list mutation. The dreaded internal "immutable list type" is gone! OTOH, if you look at a list *while* it's being sorted now, it will appear to be empty. Better than a core dump.
* Clarified documentation of tempnam().Fred Drake2002-11-121-0/+4
| | | | Closes SF bug #635656.
* Update text to refer to 2.2.2Andrew M. Kuchling2002-11-121-5/+5
| | | | | Remove an XXX item: I'm not going to write a section on the email package at this point
* Remove extra wordAndrew M. Kuchling2002-11-121-3/+3
|
* SF patch 629637: Add sample(population, k) method to the random module.Raymond Hettinger2002-11-123-2/+78
| | | | Used for random sampling without replacement.
* delete reference to building on Minix, which will be unsupported in 2.3Skip Montanaro2002-11-121-2/+0
|
* Use PyInt_AsLong instead of PyInt_AS_LONG after the call toWalter Dörwald2002-11-121-1/+1
| | | | | | | PyNumber_Int, because now PyNumber_Int might return a long, and PyInt_AsLong can handle that, whereas PyInt_AS_LONG can't. This closes SF bug #629989.
* Don't define _XOPEN_SOURCE and _POSIX_C_SOURCE on FreeBSD 5.0. Fixes #636318.Martin v. Löwis2002-11-123-44/+43
|
* Forgot a paren in the MSVC + 64-bit + Intel case.Tim Peters2002-11-111-1/+1
|