- 28 Aug, 2002 7 commits
-
-
Jack Jansen authored
in Python.app, and refer to it in Info.plist. This makes Apple Help Viewer recognize the Python documentation. - Changed the externally visible name of Python.app to "Python" (was PythonW).
-
Jack Jansen authored
HTML tarball and use it to create a documentation tree readable and searchable with Apple Help Viewer. The documentation also shows up in Project Builder (if you add Python.framework to your project).
-
Jack Jansen authored
-
Jack Jansen authored
fully qualified imports) but somehow not checked in yet.
-
Jack Jansen authored
-
Barry Warsaw authored
-
Skip Montanaro authored
-
- 27 Aug, 2002 6 commits
-
-
Raymond Hettinger authored
an error message and not just the missing name. Closes SF Bug 599869.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Peter Schneider-Kamp authored
simply PyErr_SetFromErrno This closes bug 599163.
-
Fred Drake authored
Closes SF patch #600861. Minor markup changes.
-
Fred Drake authored
usually isn't what we want anyway.
-
- 26 Aug, 2002 4 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Barry Warsaw authored
-
Tim Peters authored
-
- 25 Aug, 2002 17 commits
-
-
Tim Peters authored
Someone else may want to tackle the mutating operations similarly.
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
cardinality 500; and the smaller the intersection, the bigger the speedup).
-
Tim Peters authored
-
Tim Peters authored
meanings. I did not add new, e.g., ispropersubset() methods; we're going nuts on those, and, e.g., there was no "friendly name" for == either.
-
Tim Peters authored
<, <=, etc methods too.
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
should never be used in tests. Repaired dozens, but more is needed.
-
Tim Peters authored
-
Tim Peters authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Closes SF bug 599681.
-
Kurt B. Kaiser authored
instead. 2. Preserve the Idle client's listening socket for reuse with the fresh subprocess. 3. Remove some unused rpc code, comment out additional unused code. Modified Files: ScriptBinding.py rpc.py run.py
-
- 24 Aug, 2002 6 commits
-
-
Kurt B. Kaiser authored
Modified Files: rpc.py
-
Raymond Hettinger authored
underlying dictionaries, there were no reasonable use cases (lexicographic sorting of a list of sets is somewhat esoteric). Frees the operators for other uses (such as strict subset and superset comparisons). Updated documentation and test suite accordingly.
-
Guido van Rossum authored
possible. This always called PyUnicode_Check() and PyString_Check(), at least one of which would call PyType_IsSubtype(). Also, this would call PyString_Size() on known string objects.
-
Guido van Rossum authored
a dict instead. (Alas, using a Set would be slower instead of faster.)
-
Guido van Rossum authored
Because all built-in tests return bools now, this is the most common path!
-
Raymond Hettinger authored
the inplace operators. The strategy is to have the operator overloading code do the work and then to define equivalent method calls which rely on the operators. The changes facilitate proper application of TypeError and NonImplementedErrors. Added corresponding tests to the test suite to make sure both the operator and method call versions get exercised. Add missing tests for difference_update().
-