summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Cleaned up test (removing bogus argument list).Raymond Hettinger2002-12-071-2/+2
|
* Remove assumption that cls is a subclass of dict.Raymond Hettinger2002-12-072-10/+4
| | | | Simplifies the code and gets Just van Rossum's example to work.
* A patch from Kevin Jacobs, plugging several leaks discovered whenTim Peters2002-12-071-5/+10
| | | | | | running the sandbox datetime tests. Bugfix candidate.
* slot_tp_hash(): In the normal path, this leaked a reference to theTim Peters2002-12-061-3/+3
| | | | | | integer hash object returned by __hash__(). This accounts for some of the "mystery leaks" in the sandbox datetime tests, but probably not all of them.
* Typo: propogate -> propagateThomas Heller2002-12-062-3/+3
| | | | Bugfix candidate.
* M PyShell.pyKurt B. Kaiser2002-12-062-20/+39
| | | | | | | | | | | | | 1. Format and print exceptions raised in user code. M rpc.py 1. Additional debug messages in rpc.py 2. Move debug message enable switch from SocketIO to Client and Server to allow separate activation. 3. Add indication of origin (client or server) to debug message 4. Add sequence number to appropriate debug messages 5. Pass string exception arg as a string rather than a tuple.
* Remove extra ")" in example.Fred Drake2002-12-061-1/+1
|
* Typo: "dead lock" --> "deadlock"Fred Drake2002-12-062-2/+2
|
* Don't include <ioctl.h> unless on __VMS.Martin v. Löwis2002-12-061-1/+3
|
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-0613-7/+528
|
* Patch #649184: Update to tix-8.1.4 RC3.Martin v. Löwis2002-12-062-18/+73
|
* Search in standard library and include dirs for Sleepycat stuff.Martin v. Löwis2002-12-061-24/+34
| | | | Fixes #590377.
* Document that the second argument to PyObject_IsInstanceWalter Dörwald2002-12-061-3/+7
| | | | | | | may be a tuple. This closes SF patch http://www.python.org/sf/649095 Backport to release22-maint will follow.
* Fixed so the Res.Resource() accepts either another resource, a stringJack Jansen2002-12-053-66/+129
| | | | or no argument (giving an empty resource).
* Fixed typo.Jack Jansen2002-12-051-1/+1
|
* The final tweaks before closingMichael W. Hudson2002-12-052-20/+27
| | | | | | [ 633152 ] list slice ass ignores subtypes of list Allow arbitrary sequences on the RHS of extended slices.
* add logmerge.py (pydoc is already installed)Skip Montanaro2002-12-051-0/+1
|
* Patch #649060: Cygwin bz2module patchJason Tishler2002-12-051-14/+29
| | | | This patch enables the bz2 module to build cleanly under Cygwin.
* Patch #648998: test_commands ACL patchJason Tishler2002-12-051-0/+1
| | | | | | | | | | | | | | Although motived by Cygwin, this patch will prevent test_commands from failing on Unixes that support ACLs. For example, the following is an excerpt from the Solaris ls manpage: ... -rwxrwxrwx+ 1 smith dev 10876 May 16 9:42 part2 The plus sign indicates that there is an ACL associated with the file. ...
* Add a Cygwin skip mentioned by Jason Tishler.Tim Peters2002-12-051-1/+1
|
* Patch #551977: Regression exceptions for cygwinJason Tishler2002-12-051-0/+22
| | | | | | This patch updates regrtest.py to understand which tests are normally skipped under Cygwin. The list of tests was verified with the Cygwin Python maintainer.
* simple setup.py to install some interesting scripts in $(prefix)/bin.Skip Montanaro2002-12-051-0/+16
|
* * when given, port should be converted to intSkip Montanaro2002-12-051-1/+3
| | | | * when connecting, if the port is non-standard, display it as well
* allow optional port specified as part of the hostname, e.g.,Skip Montanaro2002-12-051-3/+6
| | | | "www.zope.org:8021".
* Decode untyped strings from UTF-8.Martin v. Löwis2002-12-041-2/+27
|
* history updateAndrew MacIntyre2002-12-041-1/+2
|
* make BSDDB 1.85 module buildable again after BSDDB3 module importAndrew MacIntyre2002-12-041-3/+3
|
* reformat for PEP-7 style conformanceAndrew MacIntyre2002-12-041-121/+132
|
* typo fix: declaration required for VACPP not EMX+gccAndrew MacIntyre2002-12-041-1/+1
|
* Replace BadInternalCall with TypeError. Add a test case. Fix whitespace.Raymond Hettinger2002-12-042-2/+10
| | | | | | | Just van Rossum showed a weird, but clever way for pure python code to trigger the BadInternalCall. The C code had assumed that calling a class constructor would return an instance of that class; however, classes that abuse __new__ can invalidate that assumption.
* Added _ssl.lib to the installer too. Restored alphabetical order ofTim Peters2002-12-042-5/+10
| | | | DLL and lib sections.
* Rearrange test_socket_ssl so that a skip is expected iff the networkTim Peters2002-12-043-28/+35
| | | | resource isn't enabled or the socket module doesn't support ssl.
* Explain what's probably a problem unique to Win9x in building _ssl.Tim Peters2002-12-041-0/+27
|
* Clarify _ssl instructions.Tim Peters2002-12-041-5/+11
|
* Added PEP253 support to most Carbon modules. This isn't complete yet:Jack Jansen2002-12-0343-534/+1592
| | | | | | some of the more compilcated cases (CF, Res) haven't been done yet. Also, various types should inherit from each other (anything with an as_Resource method should be a Resource subtype, the CF types should become one family).
* Added PEP253 support.Jack Jansen2002-12-031-11/+114
|
* Enable Check ModuleKurt B. Kaiser2002-12-031-5/+2
|
* Fix problem in example code. It's minor in this particular example,Fred Drake2002-12-031-1/+1
| | | | but can lead to mysterious problems in real applications.
* Don't make all the OpenSSL executables, just the library we need.Mark Hammond2002-12-031-1/+21
| | | | Contributed by David Bolen.
* Add the SSL libraries as dependencies.Mark Hammond2002-12-031-1/+1
|
* Don't use Alt-Fn or Ctrl-Fn keys, reserved for desktop changes in Unix.Kurt B. Kaiser2002-12-031-17/+11
| | | | | Zoom becomes Alt-H "height" Check Module becomes Alt-X "syntax"
* Fix example regular expressions that simulate scanf() constructs.Fred Drake2002-12-032-3/+4
|
* Patch #646824: Remove extra \end.Martin v. Löwis2002-12-031-1/+0
|
* Bug #647387: corrections to the logging section by Vinay SanjipAndrew M. Kuchling2002-12-031-6/+8
|
* Some more expected skips on OSX.Guido van Rossum2002-12-031-0/+3
|
* Lose references to knee (no longer exists) and pyclbr (has its ownGuido van Rossum2002-12-031-2/+0
| | | | test suite now).
* Get rid of 1.5.2 compatibility hack. :-)Guido van Rossum2002-12-032-16/+0
|
* Adding Python <= 2.2 support back in.Marc-André Lemburg2002-12-031-3/+10
|
* Add more sophistication to the comparison between pyclbr output andGuido van Rossum2002-12-031-42/+36
| | | | | | real module, by filtering out aliased methods. This, combined with the recent fixes to pyclbr, make it possible to enable more tests with fewer exceptions.
* Another big update, fixing all known bugs related to nesting functionsGuido van Rossum2002-12-031-50/+80
| | | | | and classes. Also add a mini main program that dumps the results for a given file or module.