summaryrefslogtreecommitdiffstats
path: root/Demo/rpc
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via ↵Benjamin Peterson2008-03-313-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62021 | benjamin.peterson | 2008-03-28 18:11:01 -0500 (Fri, 28 Mar 2008) | 2 lines NIL => NULL ........ r62029 | amaury.forgeotdarc | 2008-03-28 20:42:31 -0500 (Fri, 28 Mar 2008) | 3 lines Correctly call the base class tearDown(); otherwise running test_logging twice produce the errors we see on all buildbots ........ r62035 | raymond.hettinger | 2008-03-29 05:42:07 -0500 (Sat, 29 Mar 2008) | 1 line Be explicit about what efficient means. ........ r62036 | georg.brandl | 2008-03-29 06:46:18 -0500 (Sat, 29 Mar 2008) | 2 lines Fix capitalization. ........ r62037 | amaury.forgeotdarc | 2008-03-29 07:42:54 -0500 (Sat, 29 Mar 2008) | 5 lines lib2to3 should install a logging handler only when run as a main program, not when used as a library. This may please the buildbots, which fail when test_lib2to3 is run before test_logging. ........ r62043 | benjamin.peterson | 2008-03-29 10:24:25 -0500 (Sat, 29 Mar 2008) | 3 lines #2503 make singletons compared with "is" not == or != Thanks to Wummel for the patch ........ r62044 | gerhard.haering | 2008-03-29 14:11:52 -0500 (Sat, 29 Mar 2008) | 2 lines Documented the lastrowid attribute. ........ r62052 | benjamin.peterson | 2008-03-30 14:35:10 -0500 (Sun, 30 Mar 2008) | 2 lines Updated README regarding doc formats ........ r62053 | georg.brandl | 2008-03-30 14:41:39 -0500 (Sun, 30 Mar 2008) | 2 lines The other download formats will be available for 2.6 too. ........
* Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about ↵Collin Winter2007-07-175-72/+68
| | | | lingering print statements.
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-102-5/+5
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* Get rid of most of the remaining uses of <>. There's still Tools/* thogh.Neal Norwitz2006-08-292-3/+3
|
* SF patch 1179503: Fix typos in rpc.pyRaymond Hettinger2005-04-101-16/+18
| | | | | | * Call to unpack_int() should have no arguments * Misspelled BadRPCVerspion exception * Replace <> with !=
* Whitespace normalization. Ran reindent.py over the entire source tree.Tim Peters2004-07-186-1198/+1198
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-124-19/+18
| | | | From SF patch #852334.
* Patch #469517: Info about rpcgen compilers.Martin v. Löwis2001-10-112-5/+12
|
* Fix multi-arg list.append() calls.Guido van Rossum1998-10-081-1/+1
|
* nannifiedGuido van Rossum1998-09-141-16/+16
|
* Fixed typo reported by Grzegorz Makarewicz <mak@mikroplan.com.pl>.Fred Drake1998-01-281-1/+1
|
* Added note about standard library module xdrlib.pyGuido van Rossum1996-08-191-0/+2
|
* add mac compatibilityGuido van Rossum1996-07-211-1/+29
|
* undo opaque=fopaque changes; make test script more flexibleGuido van Rossum1995-10-112-5/+6
|
* small fixesGuido van Rossum1995-10-042-4/+4
|
* Use time.time() instead of time.millitimer()Guido van Rossum1994-02-171-3/+3
|
* *** empty log message ***Guido van Rossum1993-12-178-79/+123
|
* Added generic array handlersGuido van Rossum1992-12-211-0/+21
|
* Changed to use make_callGuido van Rossum1992-12-211-24/+12
|
* Full broadcast supportGuido van Rossum1992-12-211-26/+43
|
* Clarified some partsGuido van Rossum1992-12-211-8/+19
|
* Changed to use new make_call methodGuido van Rossum1992-12-211-38/+43
|
* Complete broadcast support (both raw and via port mapper CALLIT)Guido van Rossum1992-12-211-83/+198
|
* Initial revisionGuido van Rossum1992-12-211-0/+22
|
* Initial revisionGuido van Rossum1992-12-201-0/+81
|
* Added remark about serversGuido van Rossum1992-12-201-1/+2
|
* Changed mkcred interfaceGuido van Rossum1992-12-201-1/+1
|
* Bind to reserved port if root; changed mkcred interface; added -t/-u optionGuido van Rossum1992-12-201-10/+29
|
* Changed mkcred/mkverf interface; added makesocket hook and changed initGuido van Rossum1992-12-201-54/+106
| | | | interfaces; added bindresvport call.
* Changes to protect servers against broken clientsGuido van Rossum1992-12-191-2/+7
|
* Added server classes, and various robustness hacksGuido van Rossum1992-12-191-0/+244
|
* Don't call test()Guido van Rossum1992-12-171-2/+0
|
* Don't even show #test()Guido van Rossum1992-12-171-2/+0
|
* Added comments.Guido van Rossum1992-12-171-0/+3
|
* Compatibility hack with Python 0.9.6.Guido van Rossum1992-12-171-3/+6
|
* Initial revisionGuido van Rossum1992-12-172-0/+30
|
* Added compatibility hacks for Python 0.9.6.Guido van Rossum1992-12-171-4/+15
|
* Use 'l' as format, not 'i'.Guido van Rossum1992-12-171-2/+2
|
* Added some XXX comment.Guido van Rossum1992-12-171-0/+3
|
* Improved exception handing. Added some XXX comments.Guido van Rossum1992-12-171-14/+27
|
* Add timeout and retry to UDP version of protocolGuido van Rossum1992-12-151-9/+20
|
* Fix spelling of Umnt.Guido van Rossum1992-12-151-2/+2
|
* Support packing longs.Guido van Rossum1992-12-151-4/+10
|
* Fix misunderstood readdir count (bytes, not dir entries)Guido van Rossum1992-12-151-4/+3
| | | | and minor other changes.
* Add explicit auth callGuido van Rossum1992-12-151-0/+13
|
* Make auth handling differentGuido van Rossum1992-12-151-6/+20
|
* Add explicit auth objectGuido van Rossum1992-12-151-0/+6
|
* Initial revisionGuido van Rossum1992-12-145-0/+909