Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 12 | -10/+611 |
| | | | | | | | | - The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above). | ||||
* | Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment ↵ | Neal Norwitz | 2006-02-25 | 2 | -2/+5 |
| | | | | about not removing yet. | ||||
* | Move the vimrc file to the newly created Vim/ directory. | Brett Cannon | 2006-02-25 | 1 | -0/+0 |
| | |||||
* | Add a script that auto-generates a Vim syntax highlighting file for Python. | Brett Cannon | 2006-02-25 | 3 | -0/+413 |
| | | | | | | | Just symlink or copy python.vim to ~/.vim/syntax/ . Also included is a sample Python file with basic expressions to make sure they are highlighted. Also add a Vim directory in Misc to hold all Vim configuration files. | ||||
* | Implement change suggested by Jiwon Seo on python-dev. | Neal Norwitz | 2006-02-24 | 1 | -1/+1 |
| | | | | ['(' gen_for ')'] is redundant with test, so remove it. | ||||
* | Fix a couple of warnings on Mac OS X. | Neal Norwitz | 2006-02-24 | 2 | -2/+2 |
| | |||||
* | On OSX, use --arch_only `arch` in stead of --arch_only ppc, so things will | Jack Jansen | 2006-02-23 | 2 | -5/+5 |
| | | | | build for the current CPU. | ||||
* | If the readline library is found try and determine whether it's the broken | Jack Jansen | 2006-02-23 | 1 | -1/+8 |
| | | | | MacOSX 10.4 readline, and don't build the readline module in that case. | ||||
* | Got rid of byte-order dependencies. | Jack Jansen | 2006-02-23 | 1 | -2/+2 |
| | |||||
* | Fix casing of function names. | Georg Brandl | 2006-02-22 | 1 | -3/+3 |
| | |||||
* | RFE #1436243: make integers in [0..256] preallocated. | Georg Brandl | 2006-02-22 | 2 | -1/+5 |
| | |||||
* | Allow buildbot to pass extra test flags to regrtest (specifically -r) via ↵ | Neal Norwitz | 2006-02-22 | 1 | -1/+1 |
| | | | | the environment. | ||||
* | George Yoshida's fix. | Neal Norwitz | 2006-02-22 | 1 | -1/+1 |
| | |||||
* | Add test for classmethod ./. keyword args. | Georg Brandl | 2006-02-21 | 1 | -0/+8 |
| | |||||
* | Make staticmethod and classmethod complain about keyword args. | Georg Brandl | 2006-02-21 | 1 | -0/+4 |
| | |||||
* | fix typo | Georg Brandl | 2006-02-21 | 1 | -1/+1 |
| | |||||
* | Document "multifile" as deprecated. | Georg Brandl | 2006-02-21 | 1 | -0/+4 |
| | |||||
* | At Brian Wichmann's request, added words warning against | Tim Peters | 2006-02-21 | 1 | -4/+13 |
| | | | | | | | | | | | | using the old Wichmann-Hill generator, Also pointed to a newer version of his generator, and weakened the claim about what jumpahead() does now. Note sure I got the LaTeX entirely correct for \seeurl. If it's broken, please fix it ;-) Bugfix candidate! (These changes make just as much sense for 2.4.) | ||||
* | Fix table header. | Walter Dörwald | 2006-02-21 | 1 | -1/+1 |
| | |||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-02-21 | 1 | -4/+4 |
| | |||||
* | Fix typo in functional module | Georg Brandl | 2006-02-21 | 1 | -2/+2 |
| | |||||
* | Suppress another deprecation warning in the tests. | Tim Peters | 2006-02-21 | 1 | -1/+8 |
| | |||||
* | NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older Linux | Guido van Rossum | 2006-02-21 | 1 | -0/+4 |
| | | | | systems; define these conditionally. | ||||
* | Bug #1086854: Rename PyHeapType members adding ht_ prefix. | Georg Brandl | 2006-02-20 | 2 | -12/+12 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-02-20 | 3 | -5/+5 |
| | |||||
* | Bug #947571: By default, urllib.urlopen() does not raise IOErrors | Georg Brandl | 2006-02-20 | 1 | -1/+8 |
| | | | | on server error codes. Make this clear. | ||||
* | Bug #1210377: close bsddb cursor correctly after NotFoundError. | Georg Brandl | 2006-02-20 | 1 | -1/+4 |
| | |||||
* | Based on discussion with Martin and Thomas on python-checkins | Neal Norwitz | 2006-02-20 | 1 | -1/+1 |
| | | | | add a Py_SAFE_DOWNCAST() to make the code correct. | ||||
* | Patch #931938: prevent setting sys.prefix to "" | Georg Brandl | 2006-02-20 | 1 | -0/+6 |
| | |||||
* | Bug #1102649: add a note to pickle docs that pickle files should be | Georg Brandl | 2006-02-20 | 1 | -1/+10 |
| | | | | opened in binary mode. | ||||
* | Bug #1013800: document PyFunction_* functions | Georg Brandl | 2006-02-20 | 2 | -11/+112 |
| | |||||
* | Detect Win64 builds. | Martin v. Löwis | 2006-02-20 | 1 | -10/+39 |
| | |||||
* | Bug #1323369: document possible values of sys.getwindowsversion() | Georg Brandl | 2006-02-20 | 1 | -4/+4 |
| | | | | platform field | ||||
* | Let the SDK setup override distutils logic. | Martin v. Löwis | 2006-02-20 | 1 | -15/+25 |
| | |||||
* | Bug #1101233: fix test_fcntl on netbsd2 platform. | Georg Brandl | 2006-02-20 | 1 | -1/+1 |
| | |||||
* | bug #872175: add --with-fpectl to README | Georg Brandl | 2006-02-20 | 1 | -0/+5 |
| | |||||
* | Bug #854823: socketmodule now builds on Sun platforms even when | Georg Brandl | 2006-02-20 | 2 | -2/+5 |
| | | | | INET_ADDRSTRLEN is not defined. | ||||
* | Bug #1413790: zipfile now sanitizes absolute archive names that are | Georg Brandl | 2006-02-20 | 4 | -5/+26 |
| | | | | not allowed by the specs. | ||||
* | Whitespace normalization. | Tim Peters | 2006-02-19 | 1 | -2/+2 |
| | |||||
* | Repair new test failures on Windows due to | Tim Peters | 2006-02-19 | 1 | -4/+4 |
| | | | | | implicit assumptions that there's no difference between text and binary modes. | ||||
* | Fix typpo. | Thomas Wouters | 2006-02-19 | 1 | -1/+1 |
| | |||||
* | Fix compiler warning on amd64. We can't use zd here since this is | Neal Norwitz | 2006-02-19 | 1 | -2/+2 |
| | | | | ultimately going to snprintf() not the python string formatter. Right? | ||||
* | Fix compiler warning (int vs Py_ssize_t mismatch | Neal Norwitz | 2006-02-19 | 1 | -1/+1 |
| | |||||
* | Minor tweaks | Neal Norwitz | 2006-02-19 | 1 | -1/+4 |
| | |||||
* | Generators have been permanent for a while. This comment is no longer ↵ | Neal Norwitz | 2006-02-19 | 1 | -6/+1 |
| | | | | applicable. | ||||
* | Ignore the tests which report leaks sporadically. | Neal Norwitz | 2006-02-19 | 1 | -3/+8 |
| | | | | | | | | This should cause few enough spurious warnings to send to python-checkins now. If a test leaks that is not in the ignore list (LEAKY_TESTS), all tests which leak will be reported. This includes those in the ignore list. Hopefully that will prompt someone to fix the flakiness. | ||||
* | Fix a build problem introduced by r42230. | Hye-Shik Chang | 2006-02-19 | 1 | -1/+1 |
| | |||||
* | Remove two instances of trailing commas. Resolves patch #1209781. | Georg Brandl | 2006-02-19 | 2 | -2/+2 |
| | |||||
* | Fix the encodings package codec search function to only search | Marc-André Lemburg | 2006-02-19 | 3 | -3/+20 |
| | | | | | | inside its own package. Fixes problem reported in patch #1433198. Add codec search function for codec test codec. | ||||
* | Clarify how hook_compressed determines how to open a file. | Georg Brandl | 2006-02-19 | 1 | -2/+3 |
| |