summaryrefslogtreecommitdiffstats
path: root/Demo/rpc
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge fromBenjamin Peterson2008-09-133-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66394 | benjamin.peterson | 2008-09-11 17:04:02 -0500 (Thu, 11 Sep 2008) | 1 line fix typo ........ r66404 | gerhard.haering | 2008-09-12 08:54:06 -0500 (Fri, 12 Sep 2008) | 2 lines sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API. ........ r66412 | gerhard.haering | 2008-09-12 13:58:57 -0500 (Fri, 12 Sep 2008) | 2 lines Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python. ........ r66414 | gerhard.haering | 2008-09-12 17:33:22 -0500 (Fri, 12 Sep 2008) | 2 lines Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes. ........ r66424 | andrew.kuchling | 2008-09-12 20:22:08 -0500 (Fri, 12 Sep 2008) | 1 line #687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.) ........ r66425 | andrew.kuchling | 2008-09-12 20:27:33 -0500 (Fri, 12 Sep 2008) | 1 line #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing ........ r66426 | andrew.kuchling | 2008-09-12 20:34:41 -0500 (Fri, 12 Sep 2008) | 1 line #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section ........ r66427 | andrew.kuchling | 2008-09-12 20:42:55 -0500 (Fri, 12 Sep 2008) | 1 line #687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons ........ r66428 | andrew.kuchling | 2008-09-12 20:43:28 -0500 (Fri, 12 Sep 2008) | 1 line #687648 from Robert Schuppenies: use classic division. ........ r66429 | andrew.kuchling | 2008-09-12 20:47:02 -0500 (Fri, 12 Sep 2008) | 1 line Remove semicolon ........ r66430 | andrew.kuchling | 2008-09-12 20:48:36 -0500 (Fri, 12 Sep 2008) | 1 line Subclass exception ........ r66431 | andrew.kuchling | 2008-09-12 20:56:56 -0500 (Fri, 12 Sep 2008) | 1 line Fix SyntaxError ........ r66432 | andrew.kuchling | 2008-09-12 20:57:25 -0500 (Fri, 12 Sep 2008) | 1 line Update uses of string exceptions ........ r66433 | andrew.kuchling | 2008-09-12 21:08:30 -0500 (Fri, 12 Sep 2008) | 1 line Use title case ........ r66434 | andrew.kuchling | 2008-09-12 21:09:15 -0500 (Fri, 12 Sep 2008) | 1 line Remove extra 'the'; the following title includes it ........ r66435 | andrew.kuchling | 2008-09-12 21:11:51 -0500 (Fri, 12 Sep 2008) | 1 line #3288: Document as_integer_ratio ........ r66436 | andrew.kuchling | 2008-09-12 21:14:15 -0500 (Fri, 12 Sep 2008) | 1 line Use title case ........
* 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