summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-1027-59/+482
| | | | riscospath.extsep, and use os.extsep throughout.
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-106-1/+109
| | | | the terminal encoding on Windows and Unix.
* All two more modules with __all__.Raymond Hettinger2003-05-101-0/+2
|
* Fix missing parenthesis.Raymond Hettinger2003-05-101-1/+1
|
* Fixed spacing and unbalanced brackets or parenthesis.Raymond Hettinger2003-05-105-6/+7
|
* Added a tool for making a rough check of LaTeX documents.Raymond Hettinger2003-05-103-0/+171
| | | | | It checks for known commands, forward slashes, unbalanced or mismatched delimters, and unbalanced or mismatched begin/end blocks.
* [ SF 710733 - Martin v. Loewis] Improving source encoding dialogKurt B. Kaiser2003-05-103-13/+101
| | | | | | M IOBinding.py M config-main.def M configDialog.py
* 1. Update debugger to not trace RPC code even when calling Queue andKurt B. Kaiser2003-05-103-33/+17
| | | | | | | | | | | threading modules. Can debug user code which imports these modules, though. 2. Re-enable debugger in PyShell. 3. Remove old code implementing previous approaches to this issue. M Debugger.py M PyShell.py M rpc.py
* Make this format again.Fred Drake2003-05-091-10/+12
|
* add a note about accessing user-defined functions with an import statementSkip Montanaro2003-05-091-0/+17
| | | | in the setup parameter
* Make this format again.Fred Drake2003-05-091-5/+7
|
* Replace line somehow deleted before last checkin.Jeremy Hylton2003-05-091-0/+1
|
* help with MSVC 7 support in distutilsJeremy Hylton2003-05-091-0/+1
|
* Variant of SF patch 614770: MSVC 7 supportJeremy Hylton2003-05-091-143/+189
| | | | | | | | distutils now looks for the compiler version in sys.version, falling back to MSVC 6 if the version isn't listed (Python 2.2 and lower). Add helper routines for reading the registry. Refactor many module functions into methods of the compiler to avoid passing lots of state as arguments.
* Pydoc also needs its #! line massaged. Fixes #733199.Jack Jansen2003-05-091-2/+8
|
* Pass DIRMODE and FILEMODE to Mac/OSX/Makefile on framework builds (andJack Jansen2003-05-093-4/+6
| | | | | | | | honor them). Use this when building the MacOSX binary installer to get group-writeable files. Ths fix works for directories and executables, not for files just yet, because of bug #735274.
* - remove bogus \end{description}Fred Drake2003-05-091-3/+2
| | | | - fix two typos
* added note about autoGILJust van Rossum2003-05-091-0/+4
|
* Documented the new autoGIL module.Jack Jansen2003-05-093-0/+28
|
* also support cmd-. in the interactive windowJust van Rossum2003-05-091-1/+25
|
* Simple fix forMichael W. Hudson2003-05-091-0/+5
| | | | [ 733781 ] fcntl fails to build on old RH Linux
* Suppress wartning on macfs import.Jack Jansen2003-05-091-0/+2
|
* Only look for krb5.h if ssl.h was found.Martin v. Löwis2003-05-091-4/+5
| | | | Fixes bug reported in comment to #728322.
* Declare encoding. Use unsigned long constants. Fixes #728277.Martin v. Löwis2003-05-091-3/+3
|
* add explicit support for cancelling a running script (CFM-based MacPython ↵Just van Rossum2003-05-091-2/+25
| | | | had this built-in)
* more dead code removalJust van Rossum2003-05-091-32/+2
|
* dead code removalJust van Rossum2003-05-091-33/+6
|
* Patch #734118: Add {get|set}busywaitinterval.Martin v. Löwis2003-05-092-2/+46
|
* Yet another addition to [731644]: only use the lock if thread-supportJust van Rossum2003-05-091-2/+2
| | | | is enabled.
* Addition to [731644]: also use the lock when using the getaddrinfoJust van Rossum2003-05-091-2/+2
| | | | emulation (ie. when HAVE_GETADDRINFO isn't defined).
* [ 731644] & [ 604210 ] Release the GIL around getaddrinfo(), yet protectJust van Rossum2003-05-091-10/+45
| | | | | access with lock on those platforms that getaddrinfo() isn't (known to be) thread-safe. Thanks to MvL for mentoring this patch.
* 1. Implement processing of user code in subprocess MainThread. Pass loopKurt B. Kaiser2003-05-084-193/+267
| | | | | | | | | | | | is now interruptable on Windows. 2. Tweak signal.signal() wait parameters as called by various methods to improve I/O response, especially on Windows. 3. Debugger is disabled at this check-in pending further development. M NEWS.txt M PyShell.py M rpc.py M run.py
* Leading "C:" no longer hardcoded in the default installation directory.Tim Peters2003-05-082-2/+21
| | | | | | After removing that, two testers on machines where C: is not the system drive reported that the installer suggested their system drive instead of C:, and that's what they wanted it to do.
* Fixed small typo Pointed out by Michael Hudson.Jim Fulton2003-05-081-1/+1
|
* Fixed a typo in an example dealloc routine that calls it's "self"Jim Fulton2003-05-081-1/+1
| | | | argument "obj" rather than "self".
* Bump version numberBarry Warsaw2003-05-081-1/+1
|
* A couple of new parsedate test cases.Barry Warsaw2003-05-081-0/+10
|
* parsedate_tz(): Be slightly more lenient when there's no day of theBarry Warsaw2003-05-081-3/+2
| | | | | | | week. Patch given by Daniel Berlin in SF bug # 732761. Also closes SF bug # 727719. Backport candidate.
* Clarify the dedent() example a bit by indenting the input lines unevenly.Greg Ward2003-05-082-8/+8
|
* SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):Greg Ward2003-05-081-4/+29
| | | | document dedent() function.
* Minor clarification of dedent().Greg Ward2003-05-081-3/+3
|
* Add DedentTestCase to test dedent() function.Greg Ward2003-05-081-3/+68
|
* SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):Greg Ward2003-05-081-0/+42
| | | | | | | | | add dedent() function, to remove indentation from multiline strings (eg. triple-quoted strings). Differs from inspect.getdoc() by not special-casing the first line (often a sensible approach for non-docstring multiline strings). This should make this function more general (symmetric 'indent' also possible), and more fitting for the textwrap module.
* Update to Optik 1.4.1+: adds __all__ (Optik SF bug #728563).Greg Ward2003-05-081-3/+20
|
* Library documentation for the 'test' package. Still needs to be checked by ↵Brett Cannon2003-05-072-0/+276
| | | | Fred.
* Rewrote the basic section of the chapter on defining new types.Jim Fulton2003-05-073-125/+946
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the example to show how to create types the new way: - Use a class new method rather than a new function. - Use self->ob_type->tp_free in deallocators - Use attribute descriptors rather than set/getattr methods. - Make the type usable as a base type. I split the example into 3 parts: 1. The minimal new type 2. Adding attributes and methods. 3. Finer control over attributes. It's much simpler to define builtin types. These updates hopefully show this. I also made minor wording changes in two other places. I still need to update xxobject.c
* More message updates and minor fixes.Raymond Hettinger2003-05-071-10/+9
|
* Update traceback messageRaymond Hettinger2003-05-071-1/+1
|
* Add list.insert() change for negative positionsAndrew M. Kuchling2003-05-071-9/+15
| | | | | | Add ~ to MvL's last name Fix use of all-caps for a name Bump version number
* add missing parens - verified w/ interpreter - sorry to dismiss your commentSkip Montanaro2003-05-071-1/+1
| | | | Fred