Commit Graph

298 Commits

Author SHA1 Message Date
Martin v. Löwis
5cfab458e2 Patch #837322: Clarify owning, borrowing, stealing. 2003-11-06 21:07:47 +00:00
Raymond Hettinger
e86e5b71c8 Document that varlist can be NULL. 2003-10-26 17:21:56 +00:00
Martin v. Löwis
f0a8343db5 Patch #821093: Fix various typos. 2003-10-19 07:31:15 +00:00
Neal Norwitz
0c0441c5ad SF #822262, Typo in Doc/api/intro.tex 2003-10-13 17:48:23 +00:00
Raymond Hettinger
7f74ecff67 Fix doubled word errors. 2003-09-22 15:37:38 +00:00
Fred Drake
181626b352 fix \NULL with following space and no {} 2003-09-07 02:35:25 +00:00
Fred Drake
1e65e26076 backport Brett's markup fix from revision 1.28:
add missing {} after \NULL
2003-09-07 02:26:54 +00:00
Raymond Hettinger
d19a27593e Fixed doubled word typos. 2003-08-25 04:44:33 +00:00
Raymond Hettinger
59d62145cc Fix typo. 2003-08-23 03:39:28 +00:00
Raymond Hettinger
107638e861 SF patch#786531 'the the' typo. Contributed by George Yoshida 2003-08-11 23:43:04 +00:00
Raymond Hettinger
b70e0dd4b0 SF patch #783807: Clarify PySequence_Setitem ref counting
(Contributed by Jay T Miller.)
2003-08-09 04:38:25 +00:00
Fred Drake
b93b3e790e Error noted in email to python-docs: PyObject corresponds to
PyObject_HEAD, not PyObject_VAR_HEAD.
2003-07-07 17:20:40 +00:00
Skip Montanaro
eec26f982a Correct documentation of check interval - it's 100 by default, not 10 any
longer.  Pointed out by Alex Martelli.
2003-07-02 21:38:34 +00:00
Fred Drake
6595e15331 Document PyThreadState_SetAsyncExc(). 2003-06-29 02:14:31 +00:00
Neal Norwitz
847207acff SF bug #719367, string exceptions are deprecated
Remove references to string based exceptions in the doc.
2003-05-29 02:17:23 +00:00
Greg Ward
2748a4aa7e Typo fix. 2003-05-29 01:41:51 +00:00
Martin v. Löwis
5467d4c0e3 Patch #612627: Add encoding attribute to file objects, and determine
the terminal encoding on Windows and Unix.
2003-05-10 07:10:12 +00:00
Fred Drake
c22b2999f6 fix some markup errors 2003-04-23 20:38:41 +00:00
Thomas Heller
34d7f0927b Document the new functions PyInt_AsUnsignedLongMask(), PyInt_AsUnsignedLongLongMask(),
PyLong_AsUnsignedLongMask(), PyLong_AsUnsignedLongLongMask().
2003-04-23 19:51:05 +00:00
Thomas Heller
42a1172cf4 Document the new format codes B, H, I, k, K. 2003-04-23 19:27:35 +00:00
Raymond Hettinger
2ed6dff796 As discussed on python-dev, revised docs to note that
PyObject_IsTrue() can have an error result.

Also, added missing docs for PyObject_Not().

Will backport.
2003-04-16 17:28:12 +00:00
Guido van Rossum
0fc8f00252 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()
even farther down, to just before the call to
  _PyObject_DebugMallocStats().  This required the following changes:

- pystate.c, PyThreadState_GetDict(): changed not to raise an
  exception or issue a fatal error when no current thread state is
  available, but simply return NULL without raising an exception
  (ever).

- object.c, Py_ReprEnter(): when PyThreadState_GetDict() returns NULL,
  don't raise an exception but return 0.  This means that when
  printing a container that's recursive, printing will go on and on
  and on.  But that shouldn't happen in the case we care about (see
  first bullet).

- Updated Misc/NEWS and Doc/api/init.tex to reflect changes to
  PyThreadState_GetDict() definition.
2003-04-15 15:12:39 +00:00
Fred Drake
12dd7b12c6 Minor markup adjustments. 2003-04-09 18:15:57 +00:00
Guido van Rossum
6db771871e Try to discourage use of PyObject_Type(). 2003-04-09 18:02:23 +00:00
Martin v. Löwis
24b8881f61 Patch #701395: Correct documentation of PyUnicode_Splitlines. 2003-03-30 16:40:42 +00:00