Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typo | Andrew M. Kuchling | 2003-05-13 | 1 | -1/+1 |
| | |||||
* | Fixed test_anydbm_creates to use proper paths for the created db. | Brett Cannon | 2003-05-13 | 1 | -5/+11 |
| | | | | Made some stylistic fixes. | ||||
* | Fix and add reference to urllib.urlencode for parse_qsl? functions. | Brett Cannon | 2003-05-13 | 1 | -1/+5 |
| | |||||
* | * Added separate checks for matching braces. | Raymond Hettinger | 2003-05-12 | 1 | -6/+27 |
| | | | | | | * Added more LaTex cmds from the docs. * Blocked forward-slash warnings with delimiters-only option. * Put help message on shorter line to fit an 80 char screen. | ||||
* | John J. Lee contributed two urllib2 patches. | Brett Cannon | 2003-05-12 | 1 | -0/+1 |
| | |||||
* | Fix broken API descriptions in comments. | Fred Drake | 2003-05-12 | 1 | -8/+7 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2003-05-12 | 7 | -25/+24 |
| | |||||
* | Effectively renamed tokenize_tests.py to have a txt extension instead. | Tim Peters | 2003-05-12 | 3 | -1/+7 |
| | | | | | | | | | This file isn't meant to be executed, it's data input for test_tokenize.py. The problem with the .py extension is that it uses "non-standard" indentation, and it's good to test that, but reindent.py keeps wanting to fix it. But fixing the indentation causes the expected-output file to change, since exact line and column numbers are part of the tokenize.tokenize() output getting tested. | ||||
* | Close the file after tokenizing it. Because the open file object was | Tim Peters | 2003-05-12 | 1 | -2/+5 |
| | | | | | bound to a module global, the file object remained opened throughout the test suite run. | ||||
* | cmp_type(): The grammar stopped allowing '=' as a comparison operator | Tim Peters | 2003-05-12 | 1 | -3/+2 |
| | | | | | about a decade ago. Put the code still allowing for it in cmp_type() out of its lonely misery. | ||||
* | Updated simple example. This should have been checked in the other | Jim Fulton | 2003-05-12 | 1 | -45/+45 |
| | | | | day, but I missfired in CVS. | ||||
* | Add a specific mention of the term "operator overloading" and add an | Fred Drake | 2003-05-12 | 1 | -1/+4 |
| | | | | index entry. Suggested to python-docs. | ||||
* | Remove assert that checked if a parameter was an instance of Request. ↵ | Brett Cannon | 2003-05-12 | 1 | -1/+0 |
| | | | | Closes patch #639139. | ||||
* | Change Request.add_header to call string.capitalize in order to normalize | Brett Cannon | 2003-05-12 | 1 | -7/+8 |
| | | | | | | headers and not have any dependency on case. Closes patch #649742. Also changed all instances of dict.items to dict.iteritems where appropriate. | ||||
* | Fix minor typos. | Raymond Hettinger | 2003-05-12 | 4 | -5/+5 |
| | |||||
* | Update for SF 71033 and changes to subprocess threading | Kurt B. Kaiser | 2003-05-12 | 1 | -1/+13 |
| | |||||
* | 1. RemoteDebugger now runs user code in subprocess MainThread | Kurt B. Kaiser | 2003-05-12 | 3 | -54/+61 |
| | | | | | | | | | | | 2. run.py: move exception printing to toplevel to allow access from main() 3. Clarification in PyShell.py: when the subprocess is restarted, the debugger GUI is reused with a fresh instance of the subprocess debugger. M PyShell.py M RemoteDebugger.py M run.py | ||||
* | Patch #735613: Pass install-purelib to idleinstall. | Martin v. Löwis | 2003-05-11 | 1 | -0/+1 |
| | |||||
* | Patch #718286: Support DESTDIR. | Martin v. Löwis | 2003-05-11 | 3 | -63/+73 |
| | |||||
* | Beefed up timezone support. UTC and GMT are now always recognized timezones | Brett Cannon | 2003-05-11 | 2 | -12/+29 |
| | | | | | with values of 0. Also now check time.daylight to see if time.tzname[1] should be used in timezone checking. | ||||
* | Update patch #732284: Correct versions of OpenUNIX, UnixWare, add OpenServer. | Martin v. Löwis | 2003-05-11 | 2 | -5/+13 |
| | |||||
* | - object is a class type, not a function | Fred Drake | 2003-05-10 | 1 | -3/+4 |
| | | | | | - when marking a function, the trailing () should be included consistently | ||||
* | Minor fixups. | Raymond Hettinger | 2003-05-10 | 1 | -2/+4 |
| | |||||
* | Fix unbalanced parethesis. | Raymond Hettinger | 2003-05-10 | 2 | -2/+2 |
| | |||||
* | Add table level validation and made minor fix-ups. | Raymond Hettinger | 2003-05-10 | 1 | -8/+22 |
| | |||||
* | Missing parenthesis found by texcheck.py | Raymond Hettinger | 2003-05-10 | 3 | -4/+4 |
| | |||||
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 27 | -59/+482 |
| | | | | riscospath.extsep, and use os.extsep throughout. | ||||
* | Patch #612627: Add encoding attribute to file objects, and determine | Martin v. Löwis | 2003-05-10 | 6 | -1/+109 |
| | | | | the terminal encoding on Windows and Unix. | ||||
* | All two more modules with __all__. | Raymond Hettinger | 2003-05-10 | 1 | -0/+2 |
| | |||||
* | Fix missing parenthesis. | Raymond Hettinger | 2003-05-10 | 1 | -1/+1 |
| | |||||
* | Fixed spacing and unbalanced brackets or parenthesis. | Raymond Hettinger | 2003-05-10 | 5 | -6/+7 |
| | |||||
* | Added a tool for making a rough check of LaTeX documents. | Raymond Hettinger | 2003-05-10 | 3 | -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 dialog | Kurt B. Kaiser | 2003-05-10 | 3 | -13/+101 |
| | | | | | | M IOBinding.py M config-main.def M configDialog.py | ||||
* | 1. Update debugger to not trace RPC code even when calling Queue and | Kurt B. Kaiser | 2003-05-10 | 3 | -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 Drake | 2003-05-09 | 1 | -10/+12 |
| | |||||
* | add a note about accessing user-defined functions with an import statement | Skip Montanaro | 2003-05-09 | 1 | -0/+17 |
| | | | | in the setup parameter | ||||
* | Make this format again. | Fred Drake | 2003-05-09 | 1 | -5/+7 |
| | |||||
* | Replace line somehow deleted before last checkin. | Jeremy Hylton | 2003-05-09 | 1 | -0/+1 |
| | |||||
* | help with MSVC 7 support in distutils | Jeremy Hylton | 2003-05-09 | 1 | -0/+1 |
| | |||||
* | Variant of SF patch 614770: MSVC 7 support | Jeremy Hylton | 2003-05-09 | 1 | -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 Jansen | 2003-05-09 | 1 | -2/+8 |
| | |||||
* | Pass DIRMODE and FILEMODE to Mac/OSX/Makefile on framework builds (and | Jack Jansen | 2003-05-09 | 3 | -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 Drake | 2003-05-09 | 1 | -3/+2 |
| | | | | - fix two typos | ||||
* | added note about autoGIL | Just van Rossum | 2003-05-09 | 1 | -0/+4 |
| | |||||
* | Documented the new autoGIL module. | Jack Jansen | 2003-05-09 | 3 | -0/+28 |
| | |||||
* | also support cmd-. in the interactive window | Just van Rossum | 2003-05-09 | 1 | -1/+25 |
| | |||||
* | Simple fix for | Michael W. Hudson | 2003-05-09 | 1 | -0/+5 |
| | | | | [ 733781 ] fcntl fails to build on old RH Linux | ||||
* | Suppress wartning on macfs import. | Jack Jansen | 2003-05-09 | 1 | -0/+2 |
| | |||||
* | Only look for krb5.h if ssl.h was found. | Martin v. Löwis | 2003-05-09 | 1 | -4/+5 |
| | | | | Fixes bug reported in comment to #728322. | ||||
* | Declare encoding. Use unsigned long constants. Fixes #728277. | Martin v. Löwis | 2003-05-09 | 1 | -3/+3 |
| |