Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix issue #4865: add /Library/Python/2.7/site-packages to | Ronald Oussoren | 2009-03-30 | 1 | -2/+4 |
| | | | | | sys.path on OSX, to make it easier to share (some) installed packages between the system install and a user install. | ||||
* | Docstring typo | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Add --user option to build_ext | Christian Heimes | 2008-05-09 | 1 | -1/+1 |
| | |||||
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -48/+185 |
| | |||||
* | Add the correct build dir when building with pydebug. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | Fix docstring for add_package in site.py. | Georg Brandl | 2007-05-19 | 1 | -2/+4 |
| | |||||
* | Patch #1677862: Require a space or tab after import in .pth files. | Martin v. Löwis | 2007-03-12 | 1 | -1/+1 |
| | |||||
* | Patch #1540892: site.py Quitter() class attempts to close sys.stdin | Kurt B. Kaiser | 2006-08-16 | 1 | -0/+6 |
| | | | | | | | | | | before raising SystemExit, allowing IDLE to honor quit() and exit(). M Lib/site.py M Lib/idlelib/PyShell.py M Lib/idlelib/CREDITS.txt M Lib/idlelib/NEWS.txt M Misc/NEWS | ||||
* | Update the docstring to use a version a little newer than 1999. This was | Neal Norwitz | 2006-08-15 | 1 | -3/+3 |
| | | | | taken from a Debian patch. Should we update the version for each release? | ||||
* | Fix site module docstring to match the code for Mac OSX, too | Nick Coghlan | 2006-06-12 | 1 | -3/+4 |
| | |||||
* | Fix site module docstring to match the code | Nick Coghlan | 2006-06-12 | 1 | -2/+2 |
| | |||||
* | Adjust whitespace. | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
| | |||||
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | Phillip J. Eby | 2006-04-11 | 1 | -0/+2 |
| | | | | | to work correctly with modules imported from zipfiles or via other PEP 302 __loader__ objects. Tests and doc updates are included. | ||||
* | Whitespace normalization. | Tim Peters | 2006-03-10 | 1 | -1/+1 |
| | |||||
* | Patch #1446372: quit and exit can now be called from the interactive | Georg Brandl | 2006-03-09 | 1 | -4/+13 |
| | | | | interpreter to exit. | ||||
* | Fix bug in addsitedir() to properly handle the lack of a second argument. | Brett Cannon | 2004-07-20 | 1 | -3/+3 |
| | | | | | | Fixed to keep backwards-compatibility for the undocumented function. Closes bug #986795. | ||||
* | Change argument list for addsitedir() to not require a second argument and thus | Brett Cannon | 2004-07-09 | 1 | -1/+1 |
| | | | | | match old verion's argument list (overlooked since API of the file is undocumented). | ||||
* | Whitespace normalization. | Tim Peters | 2004-07-07 | 1 | -1/+1 |
| | |||||
* | Refactored site.py into functions. Also moved over to using sets. | Brett Cannon | 2004-06-05 | 1 | -203/+236 |
| | | | | New regression test suite. | ||||
* | Back out last patch that removed an entry from sys.path if it was not an | Brett Cannon | 2004-03-21 | 1 | -1/+1 |
| | | | | | existent path. Pointed out by jvr that entries could be non-file items for custom importers. | ||||
* | Remove non-existent paths. | Brett Cannon | 2004-03-20 | 1 | -1/+1 |
| | |||||
* | Fix how line endings were handled when iterating over a .pth file by stripping | Brett Cannon | 2004-03-20 | 1 | -2/+1 |
| | | | | all whitespace at the end of the path line. | ||||
* | We have cp932 support in standard distribution now. And there's now | Hye-Shik Chang | 2004-02-13 | 1 | -4/+3 |
| | | | | no major codepages unsupported by Python, so remove the eg. case. | ||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
| | | | | From SF patch #852334. | ||||
* | To find the curses extension as a DLL (on OS/2), we need to adjust the | Andrew MacIntyre | 2003-12-02 | 1 | -0/+15 |
| | | | | | | library search path to include the extension directory. Without this, the curses_panel extension can't find the curses extension/DLL, which exports some curses symbols to it. | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Repair operator error. | Jeremy Hylton | 2003-07-18 | 1 | -8/+3 |
| | |||||
* | SF patch 773476: NameError when there are no prefixes. | Jeremy Hylton | 2003-07-18 | 1 | -3/+9 |
| | |||||
* | In an OSX framework build Python could fail if HOME wasn't set, fixed. | Jack Jansen | 2003-06-03 | 1 | -1/+1 |
| | | | | Fixes #747954. | ||||
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
| | | | | riscospath.extsep, and use os.extsep throughout. | ||||
* | When on MacOSX, and only in a framework build, add | Jack Jansen | 2003-04-16 | 1 | -0/+13 |
| | | | | ~/Library/Python/2.3/site-packages to sys.path, if it exists. | ||||
* | Patch #671666: Alias ANSI code page to "mbcs". | Martin v. Löwis | 2003-03-03 | 1 | -0/+16 |
| | |||||
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 1 | -9/+4 |
| | | | | | | | | | | | | | - new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again. | ||||
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -1/+1 |
| | |||||
* | Fix a problem in site.py which triggers in case sys.path is empty. | Marc-André Lemburg | 2002-09-19 | 1 | -1/+2 |
| | | | | Bugfix candidate for 2.2.2. | ||||
* | Add an XXX comment and a pointer to a full bug report. | Fred Drake | 2002-07-25 | 1 | -0/+2 |
| | |||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -3/+3 |
| | |||||
* | Removed old Digital Creations copyright/license notices (with | Guido van Rossum | 2002-04-04 | 1 | -1/+1 |
| | | | | | permission from Paul Everitt). Also removed a few other references to Digital Creations and changed the remaining ones to Zope Corporation. | ||||
* | OS/2 EMX port Library and regression test changes: | Andrew MacIntyre | 2002-02-24 | 1 | -1/+3 |
| | | | | | | | | | | | Lib/ os.py os2emxpath.py // added - OS/2 EMX specific path manipulation routines popen2.py site.py Lib/test/ test_fcntl.py test_longexp.py | ||||
* | SF #515020, delete global variables which are used only for temporary | Neal Norwitz | 2002-02-11 | 1 | -1/+2 |
| | | | | values in for loops (dircase, prefix, sitedir). | ||||
* | Don't use Latex \code{...} in docstrings. | Guido van Rossum | 2001-12-17 | 1 | -1/+1 |
| | |||||
* | Get rid of the stupid backslash in front of the column zero open | Barry Warsaw | 2001-12-17 | 1 | -1/+1 |
| | | | | | | | | | paren. This was there to worm around a stupid XEmacs bug, but since I can't tickle the bug in newer XEmacsen (just tried w/21.4.5) it's possible the problem has been fixed. We shouldn't have to be working around editor bugs anyway. If it crops up again, I'll report it (again) to the XEmacs crowd. | ||||
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -6/+1 |
| | |||||
* | Correct the URL for the license (only used when the LICENSE[.txt] file | Guido van Rossum | 2001-10-02 | 1 | -1/+1 |
| | | | | | is not found). Being fancy: insert the first 3 characters of sys.version in the URL. | ||||
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -1/+2 |
| | | | | | | | | - Do not compile unicodeobject, unicodectype, and unicodedata if Unicode is disabled - check for Py_USING_UNICODE in all places that use Unicode functions - disables unicode literals, and the builtin functions - add the types.StringTypes list - remove Unicode literals from most tests. | ||||
* | Rewrote Jack's latest change so it does what it intended to do... | Just van Rossum | 2001-08-15 | 1 | -4/+8 |
| | |||||
* | Don't remove non-directories from sys.path on the mac: files | Jack Jansen | 2001-08-15 | 1 | -2/+3 |
| | | | | can be on sys.path too. | ||||
* | Make the add*() helper functions more robust for use after intialization | Fred Drake | 2001-07-20 | 1 | -6/+33 |
| | | | | | | | | is complete: recompute _dirs_in_sys_path each time these functions are entered after module initialization is complete, and reset before returning to user code. This closes SF patch #442983. | ||||
* | Copying this 2.1.1 bugfix to the trunk: | Guido van Rossum | 2001-07-20 | 1 | -1/+0 |
| | | | | | | | | | Fix showstopper SF bug #442983: use of site.addsitedir() was broken because it references the global dirs_in_sys_path which is deleted. The fix avoids deleting that global. (My email through python.org or digicool.com is non-functional at the moment; use gvanrossum@home.com to reach me.) | ||||
* | Actually remove directories from sys.path if they do not exist; the intent | Fred Drake | 2001-07-12 | 1 | -0/+4 |
| | | | | is to avoid as many stat() calls as we can. |