summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsignal.tex
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-173/+0
|
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ................ r56155 | neal.norwitz | 2007-07-03 08:59:08 +0300 (Tue, 03 Jul 2007) | 1 line Get this test working after converting map to return an iterator ................ r56202 | neal.norwitz | 2007-07-09 04:30:09 +0300 (Mon, 09 Jul 2007) | 37 lines Merged revisions 56124-56201 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r56129 | georg.brandl | 2007-06-30 04:01:01 -0700 (Sat, 30 Jun 2007) | 2 lines Document smtp.SMTPAuthenticationError. ........ r56137 | georg.brandl | 2007-07-01 01:11:35 -0700 (Sun, 01 Jul 2007) | 2 lines Fix a few webbrowser.py problems. ........ r56143 | georg.brandl | 2007-07-02 04:54:28 -0700 (Mon, 02 Jul 2007) | 2 lines Remove duplicate sentence from alarm() doc. ........ r56170 | mark.hammond | 2007-07-03 19:03:10 -0700 (Tue, 03 Jul 2007) | 3 lines copy built files to the PCBuild directory, where tools like distutils or external build processes can find them. ........ r56176 | kurt.kaiser | 2007-07-05 15:03:39 -0700 (Thu, 05 Jul 2007) | 10 lines Many calls to tk.call involve an arglist containing a single tuple. Calls using METH_OLDARGS unpack this tuple; calls using METH_VARARG don't. Tcl's concatenation of args was affected; IDLE doesn't start. Modify Tkapp_Call() to unpack single tuple arglists. Bug 1733943 Ref http://mail.python.org/pipermail/python-checkins/2007-May/060454.html ........ r56177 | neal.norwitz | 2007-07-05 21:13:39 -0700 (Thu, 05 Jul 2007) | 1 line Fix typo in comment ........ ................ r56251 | neal.norwitz | 2007-07-11 10:01:01 +0300 (Wed, 11 Jul 2007) | 1 line Get working with map returning an iterator (had to fix whitespace too) ................ r56255 | thomas.wouters | 2007-07-11 13:41:37 +0300 (Wed, 11 Jul 2007) | 6 lines Clean up merge glitch or copy-paste error (the entire module was duplicated, except the first half even had some more copy-paste errors, referring to listcomps and genexps instead of setcomps) ................ r56256 | thomas.wouters | 2007-07-11 15:16:01 +0300 (Wed, 11 Jul 2007) | 14 lines Dict comprehensions. Still needs doc changes (like many python-3000 features ;-). It generates bytecode similar to: x = {} for k, v in (generator here): x[k] = v except there is no tuple-packing and -unpacking involved. Trivial measurement suggests it's significantly faster than dict(generator here) (in the order of 2 to 3 times as fast) but I have not done extensive measurements. ................ r56263 | guido.van.rossum | 2007-07-11 15:36:26 +0300 (Wed, 11 Jul 2007) | 3 lines Patch 1724999 by Ali Gholami Rudi -- avoid complaints about dict size change during iter in destroy call. ................
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.
* SF bug #1020540: a wrong link from "frame object" in lib indexRaymond Hettinger2004-09-041-3/+4
|
* Take out my (long since disabled) POSIX signal mask handling code.Michael W. Hudson2003-03-131-50/+4
| | | | | I'm not going to have the time or energy to get this working x-platform -- anyone who does is welcome to the code!
* This is patchMichael W. Hudson2002-05-271-4/+50
| | | | | | | [ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
* Use the standard expression for the availability statement for alarm().Fred Drake2002-02-151-2/+3
|
* note that the alarm function is not available on Windows.Skip Montanaro2002-02-151-4/+4
|
* Fix up a few style nits -- avoid "e.g." and "i.e." -- these makeFred Drake2001-07-061-4/+4
| | | | | translation more difficult, as well as reading the English more difficult for non-native speakers.
* Update example to no longer use the FCNTL module.Fred Drake2001-05-101-2/+2
|
* Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-101-3/+3
|
* Rob W. W. Hooft's spelling fixes for the Library Reference. I hopeThomas Wouters2000-07-161-1/+1
| | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem.
* SIGTERM is no longer caught to call sys.exitfunc.Guido van Rossum1999-03-251-4/+2
| | | | This change was made long ago but the documentation was never updated.
* Added an example that uses signal.alarm() to time out an os.open() thatAndrew M. Kuchling1998-08-181-1/+29
| | | | | | | | | takes too long. This example relies on the fact that raising an exception in a signal handler causes the exception to be re-raised when the main line of the program resumes execution. Is this guaranteed in CPython, or is this something that just happens to work by accident? Also fixed a typo.
* Fix markup where C include files get named in <...> form; bug reported byFred Drake1998-08-141-1/+1
| | | | Lorenzo M. Catucci <lorenzo@argon.roma2.infn.it>.
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* Clarify the type of the signal handler.Guido van Rossum1998-06-091-1/+2
|
* Remove all uses of \sectcode; we can now use logical markup everywhere.Fred Drake1998-04-041-1/+1
|
* Remove obsolete \setindexsubitem macro.Fred Drake1998-04-041-1/+0
|
* Change "\," to just "," in function signatures. This is easier to maintain,Fred Drake1998-03-171-1/+1
| | | | | works better with LaTeX2HTML, and allows some simplification of the python.sty macros.
* Remove all \bcode / \ecode cruft; this is no longer needed. See previousFred Drake1998-02-131-1/+1
| | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across.
* Converted to use semantic markup. This is an example of how many of the newFred Drake1998-01-221-36/+39
| | | | constructs should be used.
* AMK's megapatch:Guido van Rossum1997-07-171-0/+1
| | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files
* document non-BSD SIGCHLD behaviourGuido van Rossum1996-02-121-1/+4
|
* mass changes; fix titles; add examples; correct typos; clarifications;Guido van Rossum1995-03-171-3/+10
| | | | unified style; etc.
* small changes by Soren LarsenGuido van Rossum1995-03-131-14/+14
|
* added lots of useful infoGuido van Rossum1995-02-151-15/+64
|
* added libsignal.texGuido van Rossum1995-02-071-0/+80