summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder.Martin v. Löwis2005-03-031-0/+2
| | | | Backported to 2.4.
* Clear internal call error in 'L' format. Fixes #723201.Martin v. Löwis2005-03-031-0/+2
| | | | Backported to 2.4.
* Patch #1110248: SYNC_FLUSH the zlib buffer for GZipFile.flush.Martin v. Löwis2005-03-031-0/+2
| | | | Partially fixes #1110242.
* Patch #1107973: tarfile.ExFileObject iterators.Martin v. Löwis2005-03-031-0/+2
|
* Patch #1104111: Alter setup.py --help and --help-commands.Martin v. Löwis2005-03-031-0/+2
|
* Patch #1121234: Properly cleanup _exit and tkerror commands.Martin v. Löwis2005-03-011-0/+2
| | | | Will backport to 2.4.
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+2
| | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
* Patch #1093585: raise a ValueError for negative history items inMartin v. Löwis2005-02-271-0/+3
| | | | remove_history and replace_history. Will backport to 2.4.
* Patch #1049151: adding bool support to xdrlib.py.Martin v. Löwis2005-02-241-0/+2
| | | | Also add xdrlib._test into the test suite.
* Add support for negative indices in UserString.MutableString.__setitem__Walter Dörwald2005-02-181-0/+3
| | | | and UserString.MutableString.__delitem__.
* NEWS blurb for fix of:Michael W. Hudson2005-02-171-0/+3
| | | | [ 1124295 ] Function's __name__ no longer accessible in restricted mode
* spwdmodule.c should only be built when either HAVE_GETSPNAM or HAVE_GETSPENT isBrett Cannon2005-02-161-0/+3
| | | | defined.
* Add mention of patch #1095802 (fixing "Macintosh" references to represent OSBrett Cannon2005-02-131-0/+8
| | | | X).
* Modified test for tzset to not rely on tm->tm_zone's existence. Also addedBrett Cannon2005-02-102-0/+6
| | | | | | sanity checks on tzname if HAVE_TZNAME defined. Closes bug #1096244. Thanks Gregory Bond.
* SF patch #1116583: NameError in cookielib domain checkRaymond Hettinger2005-02-052-0/+3
|
* Add NEWS item about future parser bug.Jeremy Hylton2005-02-041-0/+4
|
* Security fix PSF-2005-001 for SimpleXMLRPCServer.py.Guido van Rossum2005-02-031-0/+4
|
* More bug #1077106 stuff, sorry -- modem induced impatiece!Michael W. Hudson2005-01-311-0/+2
| | | | This should go on whatever bugfix branches the other fetches up on.
* Revert os.py 1.75, and directly implement update.Martin v. Löwis2005-01-291-0/+2
| | | | Fixes #1110478 and #1100235.
* Partially revert #1074011; don't try to fflush stdin.Martin v. Löwis2005-01-271-1/+1
| | | | Backported to 2.3 and 2.4.
* add missing wordFred Drake2005-01-231-1/+2
|
* Flush std{in,out,err} before closing it. Fixes #1074011.Martin v. Löwis2005-01-231-0/+3
| | | | Will backport to 2.4 and 2.3.
* Patch #579435: Shadow Password Support ModuleMartin v. Löwis2005-01-231-0/+2
|
* Truncate st_?time before comparing it with ST_?TIME in the tests.Martin v. Löwis2005-01-231-0/+1
|
* distutils/command/install.py change.Thomas Heller2005-01-201-0/+2
|
* tweaks, small updatesMichael W. Hudson2005-01-181-9/+9
|
* Document the reconvert module.Skip Montanaro2005-01-161-0/+2
|
* Default stat_float_times to true.Martin v. Löwis2005-01-161-0/+2
|
* Added SEEK_* constants. Fixes #711830.Martin v. Löwis2005-01-161-0/+2
|
* Moved reader \r and \n processing from the iterator to the state machine -Andrew McNamara2005-01-131-2/+3
| | | | | this allows for better handling of newline characters in quoted fields (and hopefully resolves Bug 967934).
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-132-0/+3
| | | | the changes.
* Add counting of source iterator lines to the reader object - handy forAndrew McNamara2005-01-121-0/+4
| | | | | user error messages (otherwise difficult to do without instrumenting the source).
* When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fieldsAndrew McNamara2005-01-121-2/+5
| | | | to floats.
* When using QUOTE_NONNUMERIC, we now test for "numericness" withAndrew McNamara2005-01-121-0/+3
| | | | | | | | PyNumber_Check, rather than trying to convert to a float. Reimplemented writer - now raises exceptions when it sees a quotechar but neither doublequote or escapechar are set. Doublequote results are now more consistent (eg, single quote should generate """", rather than "", which is ambiguous).
* Rename csv.set_field_limit to csv.field_size_limit (since it both sets andAndrew McNamara2005-01-121-1/+1
| | | | gets).
* Add news about csv module updates.Andrew McNamara2005-01-121-0/+28
|
* SF 1098985: set objects cannot be marshalledRaymond Hettinger2005-01-111-0/+2
|
* Add definitions for "up" and "down" commands that print/display the currentSkip Montanaro2005-01-081-2/+52
| | | | | | | | | | Python file/line when the current C execution frame is inside PyEval_EvalFrame. These are commented out by default because GDB sometimes crashes as a result (seems like a GDB bug). Add a pyframe command that displays the current Python stack frame. If the marked lines are uncommented, it will also cause Emacs/XEmacs to display the current file/line.
* In _DummyThread objects the lock stored in __block (allocated thanks toBrett Cannon2005-01-081-0/+5
| | | | | | | | _Thread.__init__) was never used. This is a waste since locks use OS primitives that are in limited supply. So the lock is deleted in _DummyThread.__init__ . Closes bug #1089632.
* SF #75103: imghdr -- identify JPEGs in EXIF formatRaymond Hettinger2005-01-071-0/+2
|
* Teach the peephole optimizer to fold simple constant expressions.Raymond Hettinger2005-01-021-0/+3
|
* [Bug #1083110] calling .flush() on decompress objects causes a segfault due ↵Andrew M. Kuchling2004-12-281-0/+3
| | | | to an uninitialized pointer: fixes the problem and adds a test case
* Add NEWS entry about bug #1076985.Walter Dörwald2004-12-221-0/+4
|
* Changing the idle wrapper to use Python and execvp() to pass arguments toSean Reifschneider2004-12-211-3/+9
| | | | idle.
* SF bug #951915: fix bug in StringIO.truncate - length not changedRaymond Hettinger2004-12-201-0/+3
| | | | (Patch by Armin Rigo.)
* SF #1085304: Make array.array pickle-ableRaymond Hettinger2004-12-161-0/+2
|
* locale.py now uses an updated locale alias table (built usingMarc-André Lemburg2004-12-101-0/+5
| | | | | | | | | Tools/i18n/makelocalealias.py, a tool to parse the X11 locale alias file); the encoding lookup was enhanced to use Python's encoding alias table As sige-effect, this fixes SF bug [ 1080864 ] locale.py doesn't recognize valid locale setting.
* Combined several entries.Raymond Hettinger2004-12-071-6/+2
|
* Eliminate the deprecated option to return None instead of a tuple of ↵Raymond Hettinger2004-12-071-0/+6
| | | | arguments in __reduce__().
* Change code in setup.py for parsing LDFLAGS and CPPFLAGS to use optparseBrett Cannon2004-12-071-0/+2
| | | | | instead of getopt. Required making use of gettext._ as optional (optparse changed OK'ed by Greg Ward in private email).