summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* test case output for dospath regr testSkip Montanaro2000-08-231-0/+2
|
* Updated some URLs; removed mention of copyright (we'll have to addGuido van Rossum2000-08-231-33/+18
| | | | | something in later after that discussion is over); remove explanation of 2.0 version number.
* Simplified inclusions and avoid prototypes copied in from elsewhere.Fred Drake2000-08-231-12/+1
| | | | This also avoids a warning in anal mode.
* fix list comprehension discussion to use \keyword macro instead of simplySkip Montanaro2000-08-231-3/+4
| | | | quoting keywords.
* update commonprefix doc to make sure user is aware it worksSkip Montanaro2000-08-231-2/+4
| | | | | character-by-character and that that behavior may result in it returning prefixes that are not valid paths
* new test - like test_ntpath but without splitunc test casesSkip Montanaro2000-08-231-0/+49
|
* added commonprefix test casesSkip Montanaro2000-08-231-0/+6
|
* updated to correct failing test casesSkip Montanaro2000-08-231-2/+2
|
* Added note stating that the parser module will need updating for mostFred Drake2000-08-231-0/+7
| | | | changes to this file.
* validate_listmaker(): Revise to match Skip's latest changes to theFred Drake2000-08-231-6/+12
| | | | Grammar file. This makes the test suite pass once again.
* Restored commonprefix() semantics.Jack Jansen2000-08-231-23/+13
|
* Rehabilitate autotest.py.Tim Peters2000-08-232-1/+40
| | | | | In README: Write up (Guido's) rules for intra-test imports; warn against asserts; document test_support.use_large_resources.
* Added PyOS_CheckStack call to PyObject_CompareJack Jansen2000-08-221-0/+13
| | | | | Lowered the recursion limit on compares to 60 (one recursion depth can take a whopping 2K of stack space when running test_b1!)
* Added include for limits.hJack Jansen2000-08-222-0/+8
|
* Regenerated to take advantage of support for multiple names for a single ↵Jack Jansen2000-08-2210-105/+37
| | | | property.
* Only output the code to alias properties if the names aren't the same.Jack Jansen2000-08-221-0/+2
|
* At Mark Hammond's request, removing registry keyGuido van Rossum2000-08-221-5/+0
| | | | | | | Software\Python\PythonCore\2.0\Dll\Python20.dll -- it's no longer needed according to him. Note: not yet tested!
* revert semantics of commonprefix to work character-by-characterSkip Montanaro2000-08-223-26/+11
|
* Thomas Heller noticed that the wrong registry entry was written forGuido van Rossum2000-08-221-1/+1
| | | | | | | the DLL. Replace %_SYSDEST_%\Python20.dll with %_DLLDEST_%\Python20.dll.
* Registered modules could only exist in HKEY_LOCAL_MACHINE - now ↵Mark Hammond2000-08-221-3/+12
| | | | HKEY_CURRENT_USER can override.
* * added doc strings to urlopen and unquote_plusSkip Montanaro2000-08-221-1/+3
| | | | * fixed type in doc string for quote
* require list comprehensions to start with a for clauseSkip Montanaro2000-08-227-16/+40
|
* Patch by Toby Dickenson: don't die when an error occurs during stringGuido van Rossum2000-08-221-1/+7
| | | | | conversion in an exception, but instead display <unprintable %s object> where %s is the type name.
* Don't bother to 'mkpath()' the 'dist_dir' -- that's now taken care ofGreg Ward2000-08-221-2/+0
| | | | in archive_util.py.
* Ensure destination directory exists before trying to create a tarballGreg Ward2000-08-221-2/+4
| | | | or ZIP file.
* Nuked unused variable.Tim Peters2000-08-221-1/+0
|
* Don't reference a module named test.test_support. Always use plainGuido van Rossum2000-08-212-7/+1
| | | | test_support. Also fixed the expected output.
* Add a minimal test suite for the parser module.Fred Drake2000-08-212-0/+152
|
* Update to reflect recent grammar changes (list comprehensions, extendedFred Drake2000-08-211-178/+363
| | | | | | print statement), and fix up the extended call syntax support. Minor stylistic cleanups.
* Denis S. Otkidach <den@analyt.chem.msu.ru>:Fred Drake2000-08-211-2/+2
| | | | | | Let UserString.translate() method work with unicode data. This closes SourceForge patch #101246.
* Patch from Paul Schreiber <paul@commerceflow.com>:Fred Drake2000-08-211-6/+19
| | | | | | | | | | | | | | | | | | Patch description ----------------- This addresses four issues: (1) usernames and passwords in urls with special characters are now decoded properly. i.e. http://foo%2C:bar@www.whatever.com/ (2) Basic Auth support has been added to HTTPS, like it was in HTTP. (3) Version 1.92 sent the POSTed data, but did not deal with errors (HTTP responses other than 200) properly. HTTPS now behaves the same way HTTP does. (4) made URL-checking beahve the same way with HTTPS as it does with HTTP (changed == to !=).
* Describe the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.Barry Warsaw2000-08-211-2/+12
|
* Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.Barry Warsaw2000-08-211-0/+2
|
* com_print_stmt(): Guido rightly points out that the stream expressionBarry Warsaw2000-08-211-5/+22
| | | | | in extended prints should only be evaluated once. This patch plays stack games (documented!) to fix this.
* Add TestSkipped as another interesting item defined by test_support.Fred Drake2000-08-211-0/+4
|
* Thomas reminds me to bump the MAGIC number for the extended printBarry Warsaw2000-08-211-1/+1
| | | | opcode additions.
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-212-0/+23
| | | | Additional test cases for the extended print form.
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-0/+12
| | | | | Document the extended print form. Fred, please double check the markup!
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-212-138/+184
| | | | | | | eval_code2(): Implement new bytecodes PRINT_ITEM_TO and PRINT_NEWLINE_TO, as per accepted SF patch #100970. Also update graminit.c based on related Grammar/Grammar changes.
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-8/+36
| | | | | | com_print_stmt(): Implement recognition of, and byte compilation for, extended print using new byte codes PRINT_ITEM_TO and PRINT_NEWLINE_TO.
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-0/+2
| | | | | This adds the two new opcodes to support this feature: PRINT_ITEM_TO, PRINT_NEWLINE_TO.
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-2/+2
| | | | | This change modifies Python's grammar to include the extended print form.
* Ignore Grammar/Makefile now that it's a made Makefile.Thomas Wouters2000-08-211-0/+1
|
* Remove the winreg module from the project. I don't believe anyTim Peters2000-08-213-813/+0
| | | | | | | docs changes are needed (only reference to winreg I could find was in libwinreg.tex, which is documenting _winreg, and merely mentions that a higher-level winreg module *may* appear someday; that's still true).
* Add alias for old function name -- removing it broke Alexei Gilchrist's cfmAndrew M. Kuchling2000-08-201-0/+2
|
* Strengthen the warning against using SerialCookie and SmartCookie.Andrew M. Kuchling2000-08-201-9/+12
| | | | | (If they're security holes, should they be documented at all?) Minor rewrites.
* - identify() enum names.Jack Jansen2000-08-201-2/+3
| | | | | - don't identify() enum values. - make aetools.Error available in the package module.
* Updated the applescript documentation for te new framework, and replaced the ↵Jack Jansen2000-08-209-963/+1252
| | | | | | Eudora example with one that uses Disk Copy (which everyone running MacOS 8 or higher should have).
* Added a package for the other browser too.Jack Jansen2000-08-206-0/+964
|
* Moved to unsupported: it never lived up to its expectancies, and for the Mac ↵Jack Jansen2000-08-2010-0/+0
| | | | all the functionality is available in the IDE.