[Pkg] Tasks: Tasks-Squeak310-nice.13.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Tue Oct 28 21:23:16 UTC 2008


A new version of Tasks-Squeak310 was added to project Tasks:
http://www.squeaksource.com/Tasks/Tasks-Squeak310-nice.13.mcz

==================== Summary ====================

Name: Tasks-Squeak310-nice.13
Author: nice
Time: 28 October 2008, 10:23:07 pm
UUID: 78dbf62a-84e7-4d15-ad27-fc20a3742423
Ancestors: Tasks-Squeak310-kph.12

Split NicolasCellier Fixes into sub-tasks
(36 is just too many for a single method)

=============== Diff against Tasks-Squeak310-kph.12 ===============

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>fixesNicolasCellierMisc (in category 'as yet unclassified') -----
+ fixesNicolasCellierMisc
+ 	"nicolas cellier (nice) ncellier at ifrance.com"
+ 	
+ 	^ self dependingOn: {
+ 		" http://bugs.squeak.org/view.php?id=6726 "
+ 		'6726 REQ: <raw>CompiledMethod</raw> print enhancement'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6732 "
+ 		'6732 Undo polygon painting cause drawing not functioning anymore'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6584 "
+ 		'6584 Symbol allInstances doesn''t work anymore'.
+ 		} !

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>fixesNicolasCellierTools (in category 'as yet unclassified') -----
+ fixesNicolasCellierTools
+ 	"nicolas cellier (nice) ncellier at ifrance.com"
+ 	
+ 	^ self dependingOn: {
+ 		" http://bugs.squeak.org/view.php?id=6812 "
+ 		'6812 Inspecting a changing WeakSet will raise a Debugger'.
+ 		} !

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>fixesNicolasCellierNumbers (in category 'as yet unclassified') -----
+ fixesNicolasCellierNumbers
+ 	"nicolas cellier (nice) ncellier at ifrance.com"
+ 	
+ 	^ self dependingOn: {
+ 		" http://bugs.squeak.org/view.php?id=6781 "
+ 		'6781: 0.0 raisedTo: -1.0 unexpected result'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6782 "
+ 		'6782: 1.0 / (FloatArray with: 2.0) unexpected result'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6729 "
+   		'6729: -Infinity closeTo: Infinity'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6796 "
+ 		'6796 A ScaledDecimal is a literal but not isLiteral'.
+ 	
+ 		" http://bugs.squeak.org/view.php?id=6797 "
+ 		'6797 Compiler reduce ScaledDecimal with different scales to a single literal'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=4378 "
+  		'4378 ScaledDecimal storeString uses printOn: and looses exactness'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7169 "
+ 		'7169 SqNumberParser does not parse ScaledDecimal with trailing zeros correctly'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6779 "
+ 		'6779 ScaledDecimal readFrom: ''5.3'' would not answer a ScaledDecimal'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6482 "
+ 		'6482 Interval storeOn: Incorrect for some ScaledDecimal'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6696 "
+ 		'6696 ScaledDecimal can read in base 16 but cannot print in base 16'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6695 "
+ 		'6695 Float storeStringBase: does not store the radix'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6697 "
+ 		'6697 Number>>storeOn:base: default implementation is wrong'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6873 "
+ 		'6873 [BUG] isPowerOfTwo incorrect for some LargeNegativeInteger'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6456 "
+ 		'6456 [BUG] Interval of Float do: infinite loop'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6990 "
+ 		'6990 0.0 significandAsInteger is too big'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=5640 "
+ 		'5640 Number-i-printShowingDecimalPlaces:'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7114 "
+ 		'7114 [BUG] SmallInteger minVal highBitOfMagnitude'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7134 "
+ 		'7134 Float rounded is inexact'.
+ 		} !

Item was changed:
  ----- Method: ReleaseAfterSqueak310 class>>fixesNicolasCellier (in category 'as yet unclassified') -----
  fixesNicolasCellier
  	"nicolas cellier (nice) ncellier at ifrance.com"
  	
+ 	"Too many fixes here (>36). It is necessary to split in sub-tasks"
- 	"36 so far"
  	^ self dependingOn: {
+ 		self fixesNicolasCellierCollectionsAndStreams.
+ 		self fixesNicolasCellierNumbers.
+ 		self fixesNicolasCellierTools.
+ 		self fixesNicolasCellierMisc.
+ 		}!
- 		" http://bugs.squeak.org/view.php?id=6812 "
- 		'6812 Inspecting a changing WeakSet will raise a Debugger'.
- 
- 		" http://bugs.squeak.org/view.php?id=6781 "
- 		'6781: 0.0 raisedTo: -1.0 unexpected result'.
- 
- 		" http://bugs.squeak.org/view.php?id=6782 "
- 		'6782: 1.0 / (FloatArray with: 2.0) unexpected result'.
- 
- 		" http://bugs.squeak.org/view.php?id=6729 "
-   		'6729: -Infinity closeTo: Infinity'.
- 
- 		" http://bugs.squeak.org/view.php?id=6796 "
- 		'6796 A ScaledDecimal is a literal but not isLiteral'.
- 	
- 		" http://bugs.squeak.org/view.php?id=6797 "
- 		'6797 Compiler reduce ScaledDecimal with different scales to a single literal'.
- 
- 		" http://bugs.squeak.org/view.php?id=4378 "
-  		'4378 ScaledDecimal storeString uses printOn: and looses exactness'.
- 
- 		" http://bugs.squeak.org/view.php?id=7169 "
- 		'7169 SqNumberParser does not parse ScaledDecimal with trailing zeros correctly'.
- 
- 		" http://bugs.squeak.org/view.php?id=6779 "
- 		'6779 ScaledDecimal readFrom: ''5.3'' would not answer a ScaledDecimal'.
- 
- 		" http://bugs.squeak.org/view.php?id=6482 "
- 		'6482 Interval storeOn: Incorrect for some ScaledDecimal'.
- 
- 		" http://bugs.squeak.org/view.php?id=6696 "
- 		'6696 ScaledDecimal can read in base 16 but cannot print in base 16'.
- 
- 		" http://bugs.squeak.org/view.php?id=6695 "
- 		'6695 Float storeStringBase: does not store the radix'.
- 
- 		" http://bugs.squeak.org/view.php?id=6697 "
- 		'6697 Number>>storeOn:base: default implementation is wrong'.
- 
- 		" http://bugs.squeak.org/view.php?id=6778 "
- 		'6778 SkipList copy is shallow...'.
- 
- 		" http://bugs.squeak.org/view.php?id=6777 "
- 		'6777 CharacterSet copy is shallow...'.
- 
- 		" http://bugs.squeak.org/view.php?id=6366 "
- 		'6366 [BUG] WideString findString:startingAt: and other matchTable problems'.
- 
- 		" http://bugs.squeak.org/view.php?id=6367 "
- 		'6367 WideString substrings broken'.
- 
- 		" http://bugs.squeak.org/view.php?id=3574 "
- 		'3574 (Wide)String-findFirstInString:inSet:startingAt: broke if last char'.
- 
- 		" http://bugs.squeak.org/view.php?id=5331 "
- 		'5331 "abc" beginsWith: "ab" asWideString (returns wrong result)'.
- 
- 		" http://bugs.squeak.org/view.php?id=6726 "
- 		'6726 REQ: <raw>CompiledMethod</raw> print enhancement'.
- 
- 		" http://bugs.squeak.org/view.php?id=6732 "
- 		'6732 Undo polygon painting cause drawing not functioning anymore'.
- 
- 		" http://bugs.squeak.org/view.php?id=6873 "
- 		'6873 [BUG] isPowerOfTwo incorrect for some LargeNegativeInteger'.
- 
- 		" http://bugs.squeak.org/view.php?id=2701 "
- 		'2701 DependentsArray might potentially be misused'.
- 
- 		" http://bugs.squeak.org/view.php?id=6584 "
- 		'6584 Symbol allInstances doesn''t work anymore'.
- 
- 		" http://bugs.squeak.org/view.php?id=6456 "
- 		'6456 [BUG] Interval of Float do: infinite loop'.
- 
- 		" http://bugs.squeak.org/view.php?id=1602 "
- 		'1602 [ENH] Interval method indexOf:'.
- 
- 		" http://bugs.squeak.org/view.php?id=6933 "
- 		'6933 MultiByteFileStream>>upTo: fails for binary'.
- 
- 		" http://bugs.squeak.org/view.php?id=6990 "
- 		'6990 0.0 significandAsInteger is too big'.
- 
- 		" http://bugs.squeak.org/view.php?id=5640 "
- 		'5640 Number-i-printShowingDecimalPlaces:'.
- 
- 		" http://bugs.squeak.org/view.php?id=6535 "
- 		"'6535 keyBlock and sortBlock are lost when creating a collection of the same species.'.
- 		hangs when loading"
- 
- 		" http://bugs.squeak.org/view.php?id=7095 "
- 		'7095 Dictionary>>collect: answers OrderedCollection not Dictionary'.
- 
- 		" http://bugs.squeak.org/view.php?id=7114 "
- 		'7114 [BUG] SmallInteger minVal highBitOfMagnitude'.
- 
- 		" http://bugs.squeak.org/view.php?id=7121 "
- 		'7121 add:beforeIndex: and add:afterIndex: do not work as advertised'.
- 
- 		" http://bugs.squeak.org/view.php?id=7134 "
- 		'7134 Float rounded is inexact'.
- 
- 		" http://bugs.squeak.org/view.php?id=7136 "
- 		'7136 [BUG] LinkedList add:after: fails to update lastLink'.
- 
- 		" http://bugs.squeak.org/view.php?id=7175 "
- 		'7175 CharacterSetComplement cannot printString'.
- 		} !

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>fixesNicolasCellierCollectionsAndStreams (in category 'as yet unclassified') -----
+ fixesNicolasCellierCollectionsAndStreams
+ 	"nicolas cellier (nice) ncellier at ifrance.com"
+ 	
+ 	^ self dependingOn: {
+ 		" http://bugs.squeak.org/view.php?id=6778 "
+ 		'6778 SkipList copy is shallow...'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6777 "
+ 		'6777 CharacterSet copy is shallow...'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6366 "
+ 		'6366 [BUG] WideString findString:startingAt: and other matchTable problems'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6367 "
+ 		'6367 WideString substrings broken'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=3574 "
+ 		'3574 (Wide)String-findFirstInString:inSet:startingAt: broke if last char'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=5331 "
+ 		'5331 "abc" beginsWith: "ab" asWideString (returns wrong result)'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=2701 "
+ 		'2701 DependentsArray might potentially be misused'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=1602 "
+ 		'1602 [ENH] Interval method indexOf:'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6933 "
+ 		'6933 MultiByteFileStream>>upTo: fails for binary'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=6535 "
+ 		"'6535 keyBlock and sortBlock are lost when creating a collection of the same species.'.
+ 		hangs when loading"
+ 
+ 		" http://bugs.squeak.org/view.php?id=7095 "
+ 		'7095 Dictionary>>collect: answers OrderedCollection not Dictionary'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7121 "
+ 		'7121 add:beforeIndex: and add:afterIndex: do not work as advertised'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7136 "
+ 		'7136 [BUG] LinkedList add:after: fails to update lastLink'.
+ 
+ 		" http://bugs.squeak.org/view.php?id=7175 "
+ 		'7175 CharacterSetComplement cannot printString'.
+ 		} !



More information about the Packages mailing list