summaryrefslogtreecommitdiffstats
path: root/Lib/plat-irix6
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-1722-4516/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55360 | guido.van.rossum | 2007-05-15 14:57:59 -0700 (Tue, 15 May 2007) | 2 lines obcheckin. ........ r55361 | guido.van.rossum | 2007-05-15 14:59:18 -0700 (Tue, 15 May 2007) | 2 lines Get rid of strop module. ........ r55367 | brett.cannon | 2007-05-15 21:06:28 -0700 (Tue, 15 May 2007) | 2 lines Remove the 'pure' module. ........ r55369 | brett.cannon | 2007-05-15 21:07:31 -0700 (Tue, 15 May 2007) | 2 lines Remove the lib-old directory (already empty). ........ r55370 | neal.norwitz | 2007-05-15 21:30:40 -0700 (Tue, 15 May 2007) | 1 line Get rid of a bunch more references to strop ........ r55374 | brett.cannon | 2007-05-15 21:39:00 -0700 (Tue, 15 May 2007) | 2 lines Complete the removal of IRIX-specific modules. ........ r55379 | brett.cannon | 2007-05-15 22:31:54 -0700 (Tue, 15 May 2007) | 2 lines Update removed IRIX modules based on what is gone from removing plat-irix6. ........ r55388 | brett.cannon | 2007-05-16 14:34:52 -0700 (Wed, 16 May 2007) | 2 lines Clean up the docstring for the compiler resource. ........ r55406 | brett.cannon | 2007-05-17 11:05:37 -0700 (Thu, 17 May 2007) | 2 lines Remove BaseException.message (deprecated in Python 2.6). ........
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55329 | brett.cannon | 2007-05-14 16:36:56 -0700 (Mon, 14 May 2007) | 3 lines Implement the removal of tuple parameter unpacking (PEP 3113). Thanks, Tony Lownds for the patch. ........ r55331 | neal.norwitz | 2007-05-14 16:40:30 -0700 (Mon, 14 May 2007) | 1 line Update to use Python 3.0 ........ r55332 | brett.cannon | 2007-05-14 16:47:18 -0700 (Mon, 14 May 2007) | 2 lines Mention PEP 3113. And thanks to Tony Lownds for the PEP 3113 patch. ........ r55333 | neal.norwitz | 2007-05-14 16:57:06 -0700 (Mon, 14 May 2007) | 1 line Fix exception printing (no more exceptions module) ........ r55334 | neal.norwitz | 2007-05-14 17:11:10 -0700 (Mon, 14 May 2007) | 1 line Remove popen* functions from os ........ r55335 | neal.norwitz | 2007-05-14 18:03:38 -0700 (Mon, 14 May 2007) | 1 line Get rid of most of popen. There are still some uses I need to cleanup. ........ r55336 | neal.norwitz | 2007-05-14 21:11:34 -0700 (Mon, 14 May 2007) | 1 line Remove a few more remnants of the compiler package ........ r55337 | neal.norwitz | 2007-05-14 22:28:27 -0700 (Mon, 14 May 2007) | 1 line Get test_[cx]pickle working on 64-bit platforms (avoid overflow int/long) ........
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-143-520/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55271 | fred.drake | 2007-05-11 10:14:47 -0700 (Fri, 11 May 2007) | 3 lines remove jpeg, panel libraries for SGI; there is more IRIX stuff left over, I guess that should be removed too, but will leave for someone who is sure ........ r55280 | fred.drake | 2007-05-11 19:11:37 -0700 (Fri, 11 May 2007) | 1 line remove mention of file that has been removed ........ r55301 | brett.cannon | 2007-05-13 17:38:05 -0700 (Sun, 13 May 2007) | 4 lines Remove rexec and Bastion from the stdlib. This also eliminates the need for f_restricted on frames. This in turn negates the need for PyEval_GetRestricted() and PyFrame_IsRestricted(). ........ r55303 | brett.cannon | 2007-05-13 19:22:22 -0700 (Sun, 13 May 2007) | 2 lines Remove the md5 and sha modules. ........ r55305 | george.yoshida | 2007-05-13 19:45:55 -0700 (Sun, 13 May 2007) | 2 lines fix markup ........ r55306 | neal.norwitz | 2007-05-13 19:47:57 -0700 (Sun, 13 May 2007) | 1 line Get the doc building again after some removals. ........ r55307 | neal.norwitz | 2007-05-13 19:50:45 -0700 (Sun, 13 May 2007) | 1 line Get test_pyclbr passing again after getstatus was removed from commands. This "test case" was weird since it was just importing a seemingly random module. Remove the import ........ r55322 | brett.cannon | 2007-05-14 14:09:20 -0700 (Mon, 14 May 2007) | 3 lines Remove the compiler package. Will eventually need a mechanism to byte compile an AST. ........
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-172-9/+7
| | | | | * all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
* Fix most trivially-findable print statements.Guido van Rossum2007-02-094-34/+34
| | | | | | | | | There's one major and one minor category still unfixed: doctests are the major category (and I hope to be able to augment the refactoring tool to refactor bona fide doctests soon); other code generating print statements in strings is the minor category. (Oh, and I don't know if the compiler package works.)
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-153-10/+10
| | | | (Rough first cut.)
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
| | | | | | (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
* Patch #1550800: make exec a function.Georg Brandl2006-09-062-6/+6
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-1814-995/+995
|
* Fixed invalid syntax.Sjoerd Mullender2004-03-031-1/+1
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-126-15/+11
| | | | From SF patch #852334.
* Fix a typo in the mktemp -> mkstemp patch.Guido van Rossum2002-08-101-1/+1
|
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-2/+4
| | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
* Regenerated for Irix 6.5.Jack Jansen2002-03-173-69/+776
|
* Patch by Michael Pruett: make regen work on Irix 6.0 and 6.5.Jack Jansen2002-03-171-1/+2
|
* Remove obsolete entries from regen scripts.Martin v. Löwis2001-07-311-3/+0
|
* Remove the old platform-specific FCNTL.py modules; these are no longerFred Drake2001-05-091-114/+0
| | | | needed now that fcntl exports the constants.
* Replace all the platform-specific TERMIOS modules with a portable versionFred Drake2001-02-271-676/+0
| | | | | based on the termios module. The only added "feature" is the deprecation warning it spits out.
* String method conversion.Eric S. Raymond2001-02-091-13/+12
|
* String method conversion.Eric S. Raymond2001-02-092-8/+7
|
* The socket constants have been moved to the socket module for a long time;Fred Drake2001-02-021-152/+0
| | | | | the standard library does not use the SOCKET module any more, and it is not defined for all platforms (Windows, in particular).
* Update the code to better reflect recommended style:Fred Drake2000-12-128-22/+22
| | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-184-5/+10
|
* Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is aThomas Wouters2000-07-161-1/+1
| | | | genuine bug, so I checked it in separately.
* typos fixed by Rob HooftJeremy Hylton2000-06-282-4/+4
|
* Remove stuff with unsure copyright statusGuido van Rossum1999-03-121-54/+0
|
* [Sjoerd Mullender]Guido van Rossum1998-08-071-20/+20
| | | | Don't use CL module since all constants are now in cl.
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-140/+140
|
* Get rid of the Emacs cruft now that Python-mode guess the desired settings!Guido van Rossum1998-03-261-4/+0
|
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-223-19/+17
|
* Irix 6 specific files -- thanks Sjoerd!Guido van Rossum1997-01-1529-0/+5332